search for: cgi_var

Displaying 1 result from an estimated 1 matches for "cgi_var".

Did you mean: agivar
2005 Jan 05
1
3.0.x and AIX 5.3
...edefinition of `struct var' web/cgi.c: In function `cgi_load_variables': web/cgi.c:138: error: structure has no member named `name' web/cgi.c:139: error: structure has no member named `value' ... Attached is a simple fix that just renames the "struct var" to "struct cgi_var". 3.0.10 and 3.0.11pre1 compile successfully on 5.3 after this change. Bill -------------- next part -------------- --- cgi.orig.c 2005-01-05 17:03:29.000000000 -0500 +++ cgi.aix.c 2005-01-05 17:04:03.000000000 -0500 @@ -30,12 +30,12 @@ extern void print_title(char *fmt, ...); #endif -st...