From 1c29d9d8f060f5967fdff1ba04dfd982e5da61bb Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 24 Sep 2001 06:02:31 +0000 Subject: fixed bug in POST var handling (This used to be commit 73f10d3ef6de2dbcb23f93ef93eb9e7053ebf26b) --- source3/web/cgi.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/web') diff --git a/source3/web/cgi.c b/source3/web/cgi.c index 0227cd07a6..7b12bf5748 100644 --- a/source3/web/cgi.c +++ b/source3/web/cgi.c @@ -221,19 +221,17 @@ void cgi_load_variables(void) pstring dest; convert_string(CH_DISPLAY, CH_UNIX, - variables[i].name, -1, + variables[i].name, strlen(variables[i].name), dest, sizeof(dest)); free(variables[i].name); variables[i].name = strdup(dest); convert_string(CH_DISPLAY, CH_UNIX, - variables[i].value, -1, + variables[i].value, strlen(variables[i].name), dest, sizeof(dest)); free(variables[i].value); variables[i].value = strdup(dest); } - - } -- cgit