summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-01-20 21:58:03 +0000
committerRyan Bloom <rbb@apache.org>2001-01-20 21:58:03 +0000
commitb6d879c11b3aae8537443dd37fe2c865b5c30cf3 (patch)
treeac123d4095ad45fd25edb4fbea11e1db8b546c23 /include
parent79ce568c221f055f302cbb769c29e6f4f4530a6c (diff)
downloadapr-b6d879c11b3aae8537443dd37fe2c865b5c30cf3.tar.gz
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 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@61087 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r--include/apr_file_info.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 21b16236c..d73941387 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -160,8 +160,6 @@ typedef struct apr_finfo_t apr_finfo_t;
#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 @@ struct apr_finfo_t {
/** 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;
};
/**