diff options
author | Andi Gutmans <andi@php.net> | 2001-07-10 20:40:56 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-07-10 20:40:56 +0000 |
commit | 2d9c29a31a33d608dc639a481120598921d495ef (patch) | |
tree | 92d352fc8ff508111805ea24c40bc13cabe0cbf0 /main/fopen_wrappers.c | |
parent | 4b54140a35f5c8479bfdb0cc1036ad40bc905a9d (diff) | |
download | php-git-2d9c29a31a33d608dc639a481120598921d495ef.tar.gz |
- Nuke fprintf()
Diffstat (limited to 'main/fopen_wrappers.c')
-rw-r--r-- | main/fopen_wrappers.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index a810d75243..34983b936b 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -463,8 +463,6 @@ PHPAPI FILE *php_fopen_with_path(char *filename, char *mode, char *path, char ** pathbuf[exec_fname_len] = DEFAULT_SLASH; memcpy(&pathbuf[exec_fname_len+1], filename, filename_length+1); - fprintf(stderr,"Trying to open %s\n", pathbuf); - if (PG(safe_mode)) { if (VCWD_STAT(pathbuf, &sb) == 0 && (!php_checkuid(pathbuf, mode, CHECKUID_CHECK_MODE_PARAM))) { efree(pathbuf); |