diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2009-02-10 14:21:27 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2009-02-10 14:21:27 +0000 |
commit | 2b531b5149b46444f997db3a1b132b13d0596d53 (patch) | |
tree | 9eeaa25052495523047109c5afe91b26500e0239 | |
parent | 986a933c821dd7360310457cfa4b7dfb1f000179 (diff) | |
download | php-git-2b531b5149b46444f997db3a1b132b13d0596d53.tar.gz |
MFB: typo fix
-rw-r--r-- | main/streams/plain_wrapper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/plain_wrapper.c b/main/streams/plain_wrapper.c index 8448288905..2b46d506d1 100644 --- a/main/streams/plain_wrapper.c +++ b/main/streams/plain_wrapper.c @@ -1392,7 +1392,7 @@ not_relative_path: goto stream_skip; } if (snprintf(trypath, MAXPATHLEN, "%s/%s", ptr, filename) > MAXPATHLEN) { - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s/%s path was truncated to %file", ptr, filename, MAXPATHLEN); + php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s/%s path was truncated to %d", ptr, filename, MAXPATHLEN); } if (((options & STREAM_DISABLE_OPEN_BASEDIR) == 0) && php_check_open_basedir_ex(trypath, 0 TSRMLS_CC)) { |