diff options
author | Steven Barth <steven@midlink.org> | 2008-04-26 17:55:16 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-04-26 17:55:16 +0000 |
commit | 035a193353b9ad86621b6b1fa183ccb1e0bd9e3d (patch) | |
tree | 65aa5da0b59bc65fa4343bf586b46bceddff754f /contrib/package/haserl-lua/patches | |
parent | 22b1721823d705c7318d1eebafdfcdaead3025da (diff) |
* Makefile fixes ;-)
* Removed obsolete Haserl patch
* Added Client-Splash configuration page
Diffstat (limited to 'contrib/package/haserl-lua/patches')
-rw-r--r-- | contrib/package/haserl-lua/patches/100-cookie_prefix.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/contrib/package/haserl-lua/patches/100-cookie_prefix.patch b/contrib/package/haserl-lua/patches/100-cookie_prefix.patch deleted file mode 100644 index 0547d9d87..000000000 --- a/contrib/package/haserl-lua/patches/100-cookie_prefix.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- haserl-0.9.23.orig/src/haserl.c 2008-03-18 18:17:55.000000000 +0100 -+++ haserl-0.9.23/src/haserl.c 2008-03-27 16:58:27.000000000 +0100 -@@ -340,7 +340,7 @@ - { - token++; - } -- myputenv (env, token, global.var_prefix); -+ myputenv (env, token, global.cookie_prefix); - token = strtok (NULL, ";"); - } - free (qs); -@@ -614,6 +614,7 @@ - global.acceptall = FALSE; /* don't allow POST data for GET method */ - global.uploadlist = NULL; /* we don't have any uploaded files */ - global.var_prefix = HASERL_VAR_PREFIX; -+ global.cookie_prefix = "COOKIE_"; - global.nul_prefix = ""; - - } ---- haserl-0.9.23.orig/src/haserl.h 2008-01-25 22:11:38.000000000 +0100 -+++ haserl-0.9.23/src/haserl.h 2008-03-27 16:58:18.000000000 +0100 -@@ -10,6 +10,7 @@ - char *uploaddir; /* where we upload to */ - char *uploadhandler; /* a handler for uploads */ - char *var_prefix; /* what name we give to FORM variables */ -+ char *cookie_prefix; - char *nul_prefix; /* what name we give to environment variables */ - token_t *uploadlist; /* a linked list of pathspecs */ - int debug; /* true if in "debug" mode */ |