cellog          Sun Aug 31 06:04:39 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/phar   func_interceptors.c 
  Log:
  WS merge from pecl/phar
  
http://cvs.php.net/viewvc.cgi/php-src/ext/phar/func_interceptors.c?r1=1.20.2.14&r2=1.20.2.15&diff_format=u
Index: php-src/ext/phar/func_interceptors.c
diff -u php-src/ext/phar/func_interceptors.c:1.20.2.14 
php-src/ext/phar/func_interceptors.c:1.20.2.15
--- php-src/ext/phar/func_interceptors.c:1.20.2.14      Thu Aug 14 13:01:28 2008
+++ php-src/ext/phar/func_interceptors.c        Sun Aug 31 06:04:38 2008
@@ -16,7 +16,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: func_interceptors.c,v 1.20.2.14 2008/08/14 13:01:28 dmitry Exp $ */
+/* $Id: func_interceptors.c,v 1.20.2.15 2008/08/31 06:04:38 cellog Exp $ */
 
 #include "phar_internal.h"
 
@@ -517,7 +517,7 @@
                case S_IFDIR: RETURN_STRING("dir", 1);
                case S_IFREG: RETURN_STRING("file", 1);
                }
-               php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Unknown file type 
(%d)", stat_sb->st_mode&S_IFMT);
+               php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Unknown file type 
(%d)", stat_sb->st_mode & S_IFMT);
                RETURN_STRING("unknown", 1);
        case FS_IS_W:
                RETURN_BOOL((stat_sb->st_mode & wmask) != 0);



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to