aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-14 04:55:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-14 04:55:59 +0000
commit3f5fdc7572d932f33f81029956b87230c9b05182 (patch)
tree13e8b0c3dc4c11fe0ac09affef497075177cd648 /networking
parentbe039374f3bd1c76535387ac4d079506804be270 (diff)
downloadbusybox-w32-3f5fdc7572d932f33f81029956b87230c9b05182.tar.gz
busybox-w32-3f5fdc7572d932f33f81029956b87230c9b05182.tar.bz2
busybox-w32-3f5fdc7572d932f33f81029956b87230c9b05182.zip
remove trailing whitespace
Diffstat (limited to 'networking')
-rw-r--r--networking/httpd.c8
-rw-r--r--networking/nameif.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 82755a08a..920702141 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -175,7 +175,7 @@ static const uint16_t http_response_type[] ALIGN2 = {
175 HTTP_MOVED_TEMPORARILY, 175 HTTP_MOVED_TEMPORARILY,
176 HTTP_REQUEST_TIMEOUT, 176 HTTP_REQUEST_TIMEOUT,
177 HTTP_NOT_IMPLEMENTED, 177 HTTP_NOT_IMPLEMENTED,
178#if ENABLE_FEATURE_HTTPD_BASIC_AUTH 178#if ENABLE_FEATURE_HTTPD_BASIC_AUTH
179 HTTP_UNAUTHORIZED, 179 HTTP_UNAUTHORIZED,
180#endif 180#endif
181 HTTP_NOT_FOUND, 181 HTTP_NOT_FOUND,
@@ -1405,7 +1405,7 @@ static void send_cgi_and_exit(
1405 1405
1406/* 1406/*
1407 * Send a file response to a HTTP request, and exit 1407 * Send a file response to a HTTP request, and exit
1408 * 1408 *
1409 * Parameters: 1409 * Parameters:
1410 * const char *url The requested URL (with leading /). 1410 * const char *url The requested URL (with leading /).
1411 * headers Don't send headers before if FALSE. 1411 * headers Don't send headers before if FALSE.
@@ -1992,7 +1992,7 @@ static void mini_httpd(int server_socket)
1992 while (1) { 1992 while (1) {
1993 int n; 1993 int n;
1994 len_and_sockaddr fromAddr; 1994 len_and_sockaddr fromAddr;
1995 1995
1996 /* Wait for connections... */ 1996 /* Wait for connections... */
1997 fromAddr.len = LSA_SIZEOF_SA; 1997 fromAddr.len = LSA_SIZEOF_SA;
1998 n = accept(server_socket, &fromAddr.sa, &fromAddr.len); 1998 n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
@@ -2037,7 +2037,7 @@ static void mini_httpd_nommu(int server_socket, int argc, char **argv)
2037 while (1) { 2037 while (1) {
2038 int n; 2038 int n;
2039 len_and_sockaddr fromAddr; 2039 len_and_sockaddr fromAddr;
2040 2040
2041 /* Wait for connections... */ 2041 /* Wait for connections... */
2042 fromAddr.len = LSA_SIZEOF_SA; 2042 fromAddr.len = LSA_SIZEOF_SA;
2043 n = accept(server_socket, &fromAddr.sa, &fromAddr.len); 2043 n = accept(server_socket, &fromAddr.sa, &fromAddr.len);
diff --git a/networking/nameif.c b/networking/nameif.c
index 0369c0807..a951970c2 100644
--- a/networking/nameif.c
+++ b/networking/nameif.c
@@ -4,7 +4,7 @@
4 * 4 *
5 * Written 2000 by Andi Kleen. 5 * Written 2000 by Andi Kleen.
6 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua> 6 * Busybox port 2002 by Nick Fedchik <nick@fedchik.org.ua>
7 * Glenn McGrath 7 * Glenn McGrath
8 * 8 *
9 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 9 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
10 */ 10 */