summaryrefslogtreecommitdiff
path: root/source3/web/cgi.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-01-06 19:32:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:53:47 -0500
commit23c143dc4190ea2e15d340cebd1a5ecc12ebeedd (patch)
tree43719752867e32c668546822c559370c4144c54f /source3/web/cgi.c
parentb7f908f7bafe64b5dd9b1e5a7dacf28c4b62451e (diff)
downloadsamba-23c143dc4190ea2e15d340cebd1a5ecc12ebeedd.tar.gz
samba-23c143dc4190ea2e15d340cebd1a5ecc12ebeedd.tar.bz2
samba-23c143dc4190ea2e15d340cebd1a5ecc12ebeedd.zip
r4577: Fix from William Jojo <jojowil@hvcc.edu> for AIX 5.3 compile.
Jeremy. (This used to be commit 80e7c6c312eb0bdb93fe381e7ce3a24a21dd9cf0)
Diffstat (limited to 'source3/web/cgi.c')
-rw-r--r--source3/web/cgi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/web/cgi.c b/source3/web/cgi.c
index 937e603f8c..5d52ad6279 100644
--- a/source3/web/cgi.c
+++ b/source3/web/cgi.c
@@ -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;