helly           Wed Jan 30 23:45:13 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/spl    spl_directory.c 
  Log:
  - WS
  
http://cvs.php.net/viewvc.cgi/php-src/ext/spl/spl_directory.c?r1=1.45.2.27.2.23.2.9&r2=1.45.2.27.2.23.2.10&diff_format=u
Index: php-src/ext/spl/spl_directory.c
diff -u php-src/ext/spl/spl_directory.c:1.45.2.27.2.23.2.9 
php-src/ext/spl/spl_directory.c:1.45.2.27.2.23.2.10
--- php-src/ext/spl/spl_directory.c:1.45.2.27.2.23.2.9  Wed Jan 30 23:08:13 2008
+++ php-src/ext/spl/spl_directory.c     Wed Jan 30 23:45:12 2008
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: spl_directory.c,v 1.45.2.27.2.23.2.9 2008/01/30 23:08:13 helly Exp $ */
+/* $Id: spl_directory.c,v 1.45.2.27.2.23.2.10 2008/01/30 23:45:12 helly Exp $ 
*/
 
 #ifdef HAVE_CONFIG_H
 # include "config.h"
@@ -640,7 +640,7 @@
        char *path;
        int path_len;
 
-  path = spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
+       path = spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
        RETURN_STRINGL(path, path_len, 1);
 }
 /* }}} */
@@ -652,7 +652,7 @@
        spl_filesystem_object *intern = 
(spl_filesystem_object*)zend_object_store_get_object(getThis() TSRMLS_CC);
        int path_len;
 
-  spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
+       spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
        
        if (path_len && path_len < intern->file_name_len) {
                RETURN_STRINGL(intern->file_name + path_len + 1, 
intern->file_name_len - (path_len + 1), 1);
@@ -685,7 +685,7 @@
                return;
        }
 
-  spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
+       spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
 
        if (path_len && path_len < intern->file_name_len) {
                fname = intern->file_name + path_len + 1;
@@ -1034,7 +1034,7 @@
 
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|C", &ce) == 
SUCCESS) {
                int path_len;
-    char *path = spl_filesystem_object_get_path(intern, &path_len TSRMLS_CC);
+               char *path = spl_filesystem_object_get_path(intern, &path_len 
TSRMLS_CC);
                spl_filesystem_object_create_info(intern, path, path_len, 1, 
ce, return_value TSRMLS_CC);
        }
 

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

Reply via email to