diff options
author | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-17 03:35:41 +0000 |
---|---|---|
committer | rbb <rbb@13f79535-47bb-0310-9956-ffa450edef68> | 2000-12-17 03:35:41 +0000 |
commit | e69a8b28474e9af69f940571f53c63183504030a (patch) | |
tree | 96eaf5fb2267eac9e38c6d3b93da25e275262f66 /file_io/unix | |
parent | 5d6495260e530013d15a7cc718ce6d9b551b3028 (diff) | |
download | libapr-e69a8b28474e9af69f940571f53c63183504030a.tar.gz |
Rename the apr_opendir symbol to apr_dir_open. This makes more sense,
and the rename was proposed a while ago inside of APR.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@60960 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/unix')
-rw-r--r-- | file_io/unix/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/unix/dir.c b/file_io/unix/dir.c index 419c2f881..2b4d89c18 100644 --- a/file_io/unix/dir.c +++ b/file_io/unix/dir.c @@ -67,7 +67,7 @@ static apr_status_t dir_cleanup(void *thedir) } } -apr_status_t apr_opendir(apr_dir_t **new, const char *dirname, apr_pool_t *cont) +apr_status_t apr_dir_open(apr_dir_t **new, const char *dirname, apr_pool_t *cont) { /* On some platforms (e.g., Linux+GNU libc), d_name[] in struct * dirent is declared with enough storage for the name. On other |