abies Sun May 30 16:24:46 2004 EDT Modified files: /php-src/ext/interbase interbase.c ibase_query.c Log: Fix Win32 build Added missing 'break' http://cvs.php.net/diff.php/php-src/ext/interbase/interbase.c?r1=1.219&r2=1.220&ty=u Index: php-src/ext/interbase/interbase.c diff -u php-src/ext/interbase/interbase.c:1.219 php-src/ext/interbase/interbase.c:1.220 --- php-src/ext/interbase/interbase.c:1.219 Sun May 30 12:41:28 2004 +++ php-src/ext/interbase/interbase.c Sun May 30 16:24:46 2004 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: interbase.c,v 1.219 2004/05/30 16:41:28 abies Exp $ */ +/* $Id: interbase.c,v 1.220 2004/05/30 20:24:46 abies Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -28,8 +28,6 @@ #include "php.h" -#define FILE_REVISION "$Revision: 1.219 $" - #if HAVE_IBASE #include "php_ini.h" @@ -424,6 +422,8 @@ /* 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("********"); http://cvs.php.net/diff.php/php-src/ext/interbase/ibase_query.c?r1=1.9&r2=1.10&ty=u Index: php-src/ext/interbase/ibase_query.c diff -u php-src/ext/interbase/ibase_query.c:1.9 php-src/ext/interbase/ibase_query.c:1.10 --- php-src/ext/interbase/ibase_query.c:1.9 Sun May 30 13:51:19 2004 +++ php-src/ext/interbase/ibase_query.c Sun May 30 16:24:46 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: ibase_query.c,v 1.9 2004/05/30 17:51:19 abies Exp $ */ +/* $Id: ibase_query.c,v 1.10 2004/05/30 20:24:46 abies Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1001,8 +1001,8 @@ /* this return value evaluates to bool(true) and to int(0) */ RETVAL_STRINGL("0 ",2,1); } + break; } - default: RETVAL_TRUE; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php