diff options
author | Andi Gutmans <andi@php.net> | 2000-11-01 17:31:53 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-11-01 17:31:53 +0000 |
commit | 8907e17bdecf3f2c7959a2db8671e675e883572e (patch) | |
tree | 7e16884ef5266e1761d65e48340ae382cd8a70be /main/safe_mode.c | |
parent | b25b80c147de333f26dd7cda953bfe877de86dcf (diff) | |
download | php-git-8907e17bdecf3f2c7959a2db8671e675e883572e.tar.gz |
- In function declerations the opening { should be on a new line
Diffstat (limited to 'main/safe_mode.c')
-rw-r--r-- | main/safe_mode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/safe_mode.c b/main/safe_mode.c index f545f4d4a8..9425130aa3 100644 --- a/main/safe_mode.c +++ b/main/safe_mode.c @@ -40,7 +40,8 @@ * 2 - if file does not exist, check directory * 3 - only check directory (needed for mkdir) */ -PHPAPI int php_checkuid(const char *fn, char *fopen_mode, int mode) { +PHPAPI int php_checkuid(const char *fn, char *fopen_mode, int mode) +{ struct stat sb; int ret; long uid=0L, duid=0L; |