stoddard 00/08/09 05:58:22
Modified: src/modules/dav/fs repos.c
Log:
Fix compile break
Revision Changes Path
1.19 +1 -1 apache-2.0/src/modules/dav/fs/repos.c
Index: repos.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/modules/dav/fs/repos.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- repos.c 2000/08/08 20:03:50 1.18
+++ repos.c 2000/08/09 12:58:21 1.19
@@ -227,7 +227,7 @@
/* NOTE: buf must be at least DAV_TIMEBUF_SIZE chars in size */
static void dav_format_time(int style, apr_time_t sec, char *buf)
{
- ap_exploded_time_t tms;
+ apr_exploded_time_t tms;
/* ### what to do if fails? */
(void) apr_explode_gmt(&tms, sec);
|