From: Pierre Joye Date: Sat, 30 Jan 2010 20:21:16 +0000 (+0000) Subject: - cleanup & correct msg X-Git-Tag: php-5.4.0alpha1~191^2~2014 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46349e1ebe6f9f753cceed86c71a37ced6e4bb07;p=php - cleanup & correct msg --- diff --git a/ext/standard/tests/file/windows_acls/common.inc b/ext/standard/tests/file/windows_acls/common.inc index 6bcaf2b327..c4276014af 100644 --- a/ext/standard/tests/file/windows_acls/common.inc +++ b/ext/standard/tests/file/windows_acls/common.inc @@ -118,12 +118,11 @@ function create_dir($name, $perms) { function create_file($name, $perms) { if (empty($name)) { - echo "create_dir: Empty name is not allowed\n"; + echo "create_file: Empty name is not allowed\n"; return; } touch($name); - $dst = realpath($name); icacls_set($name, PHPT_ACL_GRANT, $perms); }