Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 9716 invoked by uid 500); 23 Jun 2002 23:59:23 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Delivered-To: moderator for cvs@apr.apache.org Received: (qmail 68777 invoked from network); 23 Jun 2002 21:31:49 -0000 Date: 23 Jun 2002 21:31:48 -0000 Message-ID: <20020623213148.75332.qmail@icarus.apache.org> From: thommay@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/file_io/unix dir.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N thommay 2002/06/23 14:31:48 Modified: file_io/unix dir.c Log: The Style Police come a knocking. No functional changes Revision Changes Path 1.62 +5 -3 apr/file_io/unix/dir.c Index: dir.c =================================================================== RCS file: /home/cvs/apr/file_io/unix/dir.c,v retrieving revision 1.61 retrieving revision 1.62 diff -u -r1.61 -r1.62 --- dir.c 31 May 2002 22:28:40 -0000 1.61 +++ dir.c 23 Jun 2002 21:31:48 -0000 1.62 @@ -106,7 +106,8 @@ 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 @@ } 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 @@ 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);