rbb 01/01/20 13:58:03
Modified: include apr_file_info.h
Log:
Fix a simple compile break. apr_file_t was being declared in two files,
and we don't actually have the typedef in apr_file_info.h
Revision Changes Path
1.3 +1 -3 apr/include/apr_file_info.h
Index: apr_file_info.h
===================================================================
RCS file: /home/cvs/apr/include/apr_file_info.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- apr_file_info.h 2001/01/20 21:38:03 1.2
+++ apr_file_info.h 2001/01/20 21:58:03 1.3
@@ -160,8 +160,6 @@
#define APR_FINFO_PROT 0x00700000 /* all protections */
#define APR_FINFO_NORM 0x0073b170 /* the expected unix results */
-typedef struct apr_file_t apr_file_t;
-
/**
* The file information structure. This is analogous to the POSIX
* stat structure.
@@ -203,7 +201,7 @@
/** The file's name alone, in filesystem case */
char *fcase;
/** The file's handle, if accessed (can be submitted to apr_duphandle) */
- apr_file_t *filehand;
+ struct apr_file_t *filehand;
};
/**