aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-02-26 10:09:31 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-02-26 10:09:31 +0100
commitca228fb16dddc3c959adad97a930612a6b5256db (patch)
tree373f5940142310ce16b2b76836e185caa7d46c3c /networking/httpd.c
parent26ffe81188a5555824bc86b1953517f7ba4524a9 (diff)
downloadbusybox-ca228fb16dddc3c959adad97a930612a6b5256db.tar.gz
reuse a few strings
text data bss dec hex filename 839040 453 6828 846321 ce9f1 busybox_old 839019 453 6828 846300 ce9dc busybox_unstripped Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 227803abf..5bbc7ee85 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1432,7 +1432,7 @@ static void send_cgi_and_exit(
if (script != url) { /* paranoia */
*script = '\0';
if (chdir(url + 1) != 0) {
- bb_perror_msg("chdir %s", url + 1);
+ bb_perror_msg("chdir(%s)", url + 1);
goto error_execing_cgi;
}
// not needed: *script = '/';