aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2003-02-10 22:28:21 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2003-02-10 22:28:21 +0000
commit3d2405cfb30ccc8113839c1be3ee265597b857a6 (patch)
treee4f1e3bac76a434ecd44f638e621fa0e785b35e7 /networking/httpd.c
parent18d8a3b7e314036b915ba9e537832d4a52db75bc (diff)
downloadbusybox-3d2405cfb30ccc8113839c1be3ee265597b857a6.tar.gz
Fix compile error, last_patch81 by Vladimir N. Oleynik
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index e61518c20..fb37224cf 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -882,10 +882,12 @@ static int sendHeaders(HttpResponseNum responseNum)
"Date: %s\r\nConnection: close\r\n",
responseNum, responseString, config->found_mime_type, timeStr);
+#ifdef CONFIG_FEATURE_HTTPD_BASIC_AUTH
if (responseNum == HTTP_UNAUTHORIZED) {
len += sprintf(buf+len, "WWW-Authenticate: Basic realm=\"%s\"\r\n",
config->realm);
}
+#endif
if (config->ContentLength != -1) { /* file */
strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod));
len += sprintf(buf+len, "Last-Modified: %s\r\n%s %ld\r\n",
@@ -1519,7 +1521,6 @@ FORBIDDEN: /* protect listing /cgi-bin */
if(length < 0) // closed
length = 0;
body[length] = 0; // always null terminate for safety
- urlArgs = body;
}
}