rbb 99/06/01 08:25:40
Modified: apr/file_io/unix open.c
Log:
I removed updatefileinfo, because it does the same thing as getfileinfo, but
I forgot I was calling update in open. This fixes that bug.
Revision Changes Path
1.27 +1 -1 apache-apr/apr/file_io/unix/open.c
Index: open.c
===================================================================
RCS file: /home/cvs/apache-apr/apr/file_io/unix/open.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- open.c 1999/06/01 12:05:42 1.26
+++ open.c 1999/06/01 15:25:39 1.27
@@ -146,7 +146,7 @@
return errno;
}
- if (ap_updatefileinfo(*new) == APR_SUCCESS) {
+ if (ap_getfileinfo(*new) == APR_SUCCESS) {
ap_register_cleanup((*new)->cntxt->pool, (void *)(*new), file_cleanup,
NULL);
return APR_SUCCESS;
}