
jim at hyperreal
May 13, 1996, 1:22 PM
Post #1 of 1
(38 views)
Permalink
|
|
cvs commit: apache/src mod_status.c
|
|
jim 96/05/13 13:22:03 Modified: src mod_status.c Log: Clean up Wall warning Revision Changes Path 1.16 +4 -4 apache/src/mod_status.c Index: mod_status.c =================================================================== RCS file: /export/home/cvs/apache/src/mod_status.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C3 -r1.15 -r1.16 *** mod_status.c 1996/05/07 18:29:35 1.15 --- mod_status.c 1996/05/13 20:22:01 1.16 *************** *** 168,177 **** { struct stat_opt options[] = /* see #defines above */ { ! STAT_OPT_REFRESH, "refresh", "Refresh", ! STAT_OPT_NOTABLE, "notable", NULL, ! STAT_OPT_AUTO, "auto", NULL, ! STAT_OPT_END, NULL, NULL }; char *loc; time_t nowtime=time(NULL); --- 168,177 ---- { struct stat_opt options[] = /* see #defines above */ { ! { STAT_OPT_REFRESH, "refresh", "Refresh" }, ! { STAT_OPT_NOTABLE, "notable", NULL }, ! { STAT_OPT_AUTO, "auto", NULL }, ! { STAT_OPT_END, NULL, NULL } }; char *loc; time_t nowtime=time(NULL);
|