summaryrefslogtreecommitdiff
path: root/include/apr_file_info.h
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-01-20 21:58:03 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-01-20 21:58:03 +0000
commit7c48a553f5843b7335d07b81f57f3f6ce72d6cae (patch)
treeac123d4095ad45fd25edb4fbea11e1db8b546c23 /include/apr_file_info.h
parentce8662e652668c16ad85d85ead2bc607c45715bb (diff)
downloadlibapr-7c48a553f5843b7335d07b81f57f3f6ce72d6cae.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: http://svn.apache.org/repos/asf/apr/apr/trunk@61087 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_file_info.h')
-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;
};
/**