summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/330-httpd_user_agent.patch
diff options
context:
space:
mode:
authorkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-04-02 15:16:27 +0000
committerkaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-04-02 15:16:27 +0000
commit2fe852f5c07ba65b7187648179a14de23f7c08fc (patch)
treedd27b4d967b2bf3751f22472f5299840a49bf0f7 /package/busybox/patches/330-httpd_user_agent.patch
parentf75ae26ce6e74bb4096194e114d84537213a7ee7 (diff)
upgrade busybox to v1.1.1
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@3578 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches/330-httpd_user_agent.patch')
-rw-r--r--package/busybox/patches/330-httpd_user_agent.patch17
1 files changed, 9 insertions, 8 deletions
diff --git a/package/busybox/patches/330-httpd_user_agent.patch b/package/busybox/patches/330-httpd_user_agent.patch
index 7cf3f5337..bbe01f782 100644
--- a/package/busybox/patches/330-httpd_user_agent.patch
+++ b/package/busybox/patches/330-httpd_user_agent.patch
@@ -1,14 +1,15 @@
---- busybox-1.1.0.orig/networking/httpd.c 2006-02-06 16:41:57.000000000 +0100
-+++ busybox-1.1.0/networking/httpd.c 2006-02-06 16:41:26.000000000 +0100
+diff -Nur busybox-1.1.1/networking/httpd.c busybox-1.1.1-owrt/networking/httpd.c
+--- busybox-1.1.1/networking/httpd.c 2006-04-01 19:42:36.000000000 +0200
++++ busybox-1.1.1-owrt/networking/httpd.c 2006-04-01 19:43:59.000000000 +0200
@@ -247,6 +247,7 @@
+ const char *query;
- #ifdef CONFIG_FEATURE_HTTPD_CGI
- char *referer;
-+ char *user_agent;
- #endif
+ USE_FEATURE_HTTPD_CGI(char *referer;)
++ USE_FEATURE_HTTPD_CGI(char *user_agent;)
const char *configFile;
-@@ -1192,6 +1193,7 @@
+
+@@ -1208,6 +1209,7 @@
addEnv("SERVER", "PROTOCOL", "HTTP/1.0");
addEnv("GATEWAY_INTERFACE", "", "CGI/1.1");
addEnv("REMOTE", "ADDR", config->rmt_ip_str);
@@ -16,7 +17,7 @@
#ifdef CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV
addEnvPort("REMOTE");
#endif
-@@ -1737,6 +1739,10 @@
+@@ -1771,6 +1773,10 @@
for(test = buf + 8; isspace(*test); test++)
;
config->referer = strdup(test);