dgaudet 98/02/21 03:08:31
Modified: src/main http_config.c
Log:
The prototype of set_file_slot already includes API_EXPORT_NONSTD... fix
the declaration.
BTW, I think _NONSTD is only required for functions which have variable
length parameter lists. i.e. bputs and rputs... but *not* vbprintf since
that has a fixed parameter list.
Revision Changes Path
1.97 +1 -1 apache-1.3/src/main/http_config.c
Index: http_config.c
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/main/http_config.c,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- http_config.c 1998/02/06 18:19:56 1.96
+++ http_config.c 1998/02/21 11:08:30 1.97
@@ -920,7 +920,7 @@
return NULL;
}
-const char *set_file_slot(cmd_parms *cmd, char *struct_ptr, char *arg)
+API_EXPORT_NONSTD(const char *) set_file_slot(cmd_parms *cmd, char
*struct_ptr, char *arg)
{
/* Prepend server_root to relative arg.
This allows .htaccess to be independent of server_root,