diff options
author | Denis Vlasenko | 2007-10-14 04:55:59 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-10-14 04:55:59 +0000 |
commit | 3f5fdc7572d932f33f81029956b87230c9b05182 (patch) | |
tree | 13e8b0c3dc4c11fe0ac09affef497075177cd648 /networking/httpd.c | |
parent | be039374f3bd1c76535387ac4d079506804be270 (diff) | |
download | busybox-3f5fdc7572d932f33f81029956b87230c9b05182.zip busybox-3f5fdc7572d932f33f81029956b87230c9b05182.tar.gz |
remove trailing whitespace
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 82755a0..9207021 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -175,7 +175,7 @@ static const uint16_t http_response_type[] ALIGN2 = { HTTP_MOVED_TEMPORARILY, HTTP_REQUEST_TIMEOUT, HTTP_NOT_IMPLEMENTED, -#if ENABLE_FEATURE_HTTPD_BASIC_AUTH +#if ENABLE_FEATURE_HTTPD_BASIC_AUTH HTTP_UNAUTHORIZED, #endif HTTP_NOT_FOUND, @@ -1405,7 +1405,7 @@ static void send_cgi_and_exit( /* * Send a file response to a HTTP request, and exit - * + * * Parameters: * const char *url The requested URL (with leading /). * headers Don't send headers before if FALSE. @@ -1992,7 +1992,7 @@ static void mini_httpd(int server_socket) while (1) { int n; len_and_sockaddr fromAddr; - + /* Wait for connections... */ fromAddr.len = LSA_SIZEOF_SA; n = accept(server_socket, &fromAddr.sa, &fromAddr.len); @@ -2037,7 +2037,7 @@ static void mini_httpd_nommu(int server_socket, int argc, char **argv) while (1) { int n; len_and_sockaddr fromAddr; - + /* Wait for connections... */ fromAddr.len = LSA_SIZEOF_SA; n = accept(server_socket, &fromAddr.sa, &fromAddr.len); |