summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorthommay <thommay@13f79535-47bb-0310-9956-ffa450edef68>2002-06-23 21:31:48 +0000
committerthommay <thommay@13f79535-47bb-0310-9956-ffa450edef68>2002-06-23 21:31:48 +0000
commit903067fc95ebd1e7e1de54ac122fedefb1330bba (patch)
tree480b3c4a17eac8f59ff31e79413a58050798391f /file_io
parent78e971c7415aa6f5da8d6493a72f7dda6ea2c195 (diff)
downloadlibapr-903067fc95ebd1e7e1de54ac122fedefb1330bba.tar.gz
The Style Police come a knocking.
No functional changes git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63517 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/dir.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/file_io/unix/dir.c b/file_io/unix/dir.c
index 5f6779dab..8160a02be 100644
--- a/file_io/unix/dir.c
+++ b/file_io/unix/dir.c
@@ -106,7 +106,8 @@ static char *path_remove_last_component (const char *path, apr_pool_t *pool)
return apr_pstrndup (pool, path, (i < 0) ? 0 : i);
}
-apr_status_t apr_dir_open(apr_dir_t **new, const char *dirname, apr_pool_t *pool)
+apr_status_t apr_dir_open(apr_dir_t **new, const char *dirname,
+ apr_pool_t *pool)
{
/* On some platforms (e.g., Linux+GNU libc), d_name[] in struct
* dirent is declared with enough storage for the name. On other
@@ -129,7 +130,7 @@ apr_status_t apr_dir_open(apr_dir_t **new, const char *dirname, apr_pool_t *pool
}
else {
apr_pool_cleanup_register((*new)->pool, (void *)(*new), dir_cleanup,
- apr_pool_cleanup_null);
+ apr_pool_cleanup_null);
return APR_SUCCESS;
}
}
@@ -225,7 +226,8 @@ apr_status_t apr_dir_rewind(apr_dir_t *thedir)
return APR_SUCCESS;
}
-apr_status_t apr_dir_make(const char *path, apr_fileperms_t perm, apr_pool_t *pool)
+apr_status_t apr_dir_make(const char *path, apr_fileperms_t perm,
+ apr_pool_t *pool)
{
mode_t mode = apr_unix_perms2mode(perm);