From: Greg Beaver Date: Mon, 14 Apr 2008 17:31:01 +0000 (+0000) Subject: s/l/L/ to match actual lstat errors X-Git-Tag: RELEASE_2_0_0b1~406 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e00568dd6ac9f99aa7c685f7e3dc4bca0d9d2fec;p=php s/l/L/ to match actual lstat errors --- diff --git a/ext/phar/func_interceptors.c b/ext/phar/func_interceptors.c index 2df88a6170..4bc862526c 100644 --- a/ext/phar/func_interceptors.c +++ b/ext/phar/func_interceptors.c @@ -573,7 +573,7 @@ void phar_file_stat(const char *filename, php_stat_len filename_length, int type efree(save2); /* Error Occured */ if (!IS_EXISTS_CHECK(type)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "%sstat failed for %s", IS_LINK_OPERATION(type) ? "l" : "", filename); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "%sstat failed for %s", IS_LINK_OPERATION(type) ? "L" : "", filename); } RETURN_FALSE; }