svn commit: samba r4576 - in trunk/source/web: .

jra at samba.org jra at samba.org
Thu Jan 6 19:32:23 GMT 2005


Author: jra
Date: 2005-01-06 19:32:23 +0000 (Thu, 06 Jan 2005)
New Revision: 4576

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=4576

Log:
Fix from William Jojo <jojowil at hvcc.edu> for AIX 5.3 compile.
Jeremy.

Modified:
   trunk/source/web/cgi.c


Changeset:
Modified: trunk/source/web/cgi.c
===================================================================
--- trunk/source/web/cgi.c	2005-01-06 17:50:51 UTC (rev 4575)
+++ trunk/source/web/cgi.c	2005-01-06 19:32:23 UTC (rev 4576)
@@ -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;



More information about the samba-cvs mailing list