]> granicus.if.org Git - php/commitdiff
Fix Win32 build
authorArd Biesheuvel <abies@php.net>
Sun, 30 May 2004 20:24:46 +0000 (20:24 +0000)
committerArd Biesheuvel <abies@php.net>
Sun, 30 May 2004 20:24:46 +0000 (20:24 +0000)
Added missing 'break'

ext/interbase/ibase_query.c
ext/interbase/interbase.c

index 911417210be11f13ef1e3db14f6ff48160ff2822..fad8461c2d11ccd8f4826459acf5ab2fde7cfb58 100644 (file)
@@ -1001,8 +1001,8 @@ static int _php_ibase_exec(INTERNAL_FUNCTION_PARAMETERS, ibase_result **ib_resul
                                        /* this return value evaluates to bool(true) and to int(0) */
                                        RETVAL_STRINGL("0 ",2,1);
                                }
+                               break;
                        }
-                       
                default:
                        RETVAL_TRUE;
        }
index 509720c218c5bde2197abdab0b46a02f1a0d5d0c..f62ce1e675083f13bbb79792917b6cccb7809c2b 100644 (file)
@@ -28,8 +28,6 @@
 
 #include "php.h"
 
-#define FILE_REVISION "$Revision$"
-
 #if HAVE_IBASE
 
 #include "php_ini.h"
@@ -424,6 +422,8 @@ static void _php_ibase_free_trans(zend_rsrc_list_entry *rsrc TSRMLS_DC) /* {{{ *
 /* TODO this function should be part of either Zend or PHP API */
 static PHP_INI_DISP(php_ibase_password_displayer_cb)
 {
+       TSRMLS_FETCH();
+
        if ((type == PHP_INI_DISPLAY_ORIG && ini_entry->orig_value) 
                        || (type == PHP_INI_DISPLAY_ACTIVE && ini_entry->value)) {
                PUTS("********");