aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-21 13:46:54 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-07-21 13:46:54 +0000
commita53de7f7c2cd3ac46b26642aafb1a573a096a80d (patch)
tree76b95b7a441628b3495f744bec5d862b5250f562 /networking
parente1e5174942d4624e3abb8b98fe404afdbb4edad1 (diff)
downloadbusybox-w32-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.tar.gz
busybox-w32-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.tar.bz2
busybox-w32-a53de7f7c2cd3ac46b26642aafb1a573a096a80d.zip
- fix spelling
Diffstat (limited to 'networking')
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 66c6982bc..f7e044d27 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1568,7 +1568,7 @@ static void send_file_and_exit(const char *url, int what)
1568 f = open(url, O_RDONLY); 1568 f = open(url, O_RDONLY);
1569 if (f < 0) { 1569 if (f < 0) {
1570 if (DEBUG) 1570 if (DEBUG)
1571 bb_perror_msg("cannot open '%s'", url); 1571 bb_perror_msg("can't open '%s'", url);
1572 /* Error pages are sent by using send_file_and_exit(SEND_BODY). 1572 /* Error pages are sent by using send_file_and_exit(SEND_BODY).
1573 * IOW: it is unsafe to call send_headers_and_exit 1573 * IOW: it is unsafe to call send_headers_and_exit
1574 * if what is SEND_BODY! Can recurse! */ 1574 * if what is SEND_BODY! Can recurse! */