From 328258ac08f5554056205a6c8851e9f7bce1af4a Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 1 Jun 2001 05:01:50 +0000 Subject: Output something if password is not set. --- ext/odbc/php_odbc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 355436f63b..7d769ea5e4 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -25,7 +25,7 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif - + #include "php.h" #include "php_globals.h" @@ -259,6 +259,8 @@ static PHP_INI_DISP(display_defPW) #else PUTS("********"); #endif + } else { + PUTS("no value"); } } -- cgit v1.2.1