]> granicus.if.org Git - php/commitdiff
Corrected if() syntax in previous patch.
authorIlia Alshanetsky <iliaa@php.net>
Sun, 18 Aug 2002 07:54:33 +0000 (07:54 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Sun, 18 Aug 2002 07:54:33 +0000 (07:54 +0000)
ext/standard/file.c

index 9beefa6c79764d3ce54e8de307291ea0129603f7..15c2e902c487171205c27a3893094790c94296f0 100644 (file)
@@ -1994,7 +1994,7 @@ PHP_FUNCTION(fgetcsv)
                        bptr++; /* move on to first character in field */
                        
                        /* Check if there is an end to the enclosure */
-                       if( !strchr(bptr, enclosure) ) {
+                       if (!strchr(bptr, enclosure)) {
                                continue;
                        }