1 diff -ur busybox.old/networking/httpd.c busybox.dev/networking/httpd.c
2 --- busybox.old/networking/httpd.c 2007-02-27 23:15:20.611300000 +0100
3 +++ busybox.dev/networking/httpd.c 2007-02-27 23:18:10.022546112 +0100
5 static const char default_path_httpd_conf[] = "/etc";
6 static const char httpd_conf[] = "httpd.conf";
7 static const char home[] = "./";
8 +static const char *home_httpd = home;
13 #if ENABLE_FEATURE_HTTPD_BASIC_AUTH
14 int credentials = -1; /* if not required this is Ok */
19 sa.sa_handler = handle_sigalrm;
20 sigemptyset(&sa.sa_mask);
22 int httpd_main(int argc, char *argv[])
25 - const char *home_httpd = home;
27 USE_FEATURE_HTTPD_ENCODE_URL_STR(const char *url_for_encode;)