1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

r4577: Fix from William Jojo <jojowil@hvcc.edu> for AIX 5.3 compile.

Jeremy.
(This used to be commit 80e7c6c312)
This commit is contained in:
Jeremy Allison
2005-01-06 19:32:39 +00:00
committed by Gerald (Jerry) Carter
parent b7f908f7ba
commit 23c143dc41

View File

@ -30,12 +30,12 @@
extern void print_title(char *fmt, ...);
#endif
struct var {
struct cgi_var {
char *name;
char *value;
};
static struct var variables[MAX_VARIABLES];
static struct cgi_var variables[MAX_VARIABLES];
static int num_variables;
static int content_length;
static int request_post;