diff options
| author | Zeev Suraski <zeev@php.net> | 2000-02-05 17:26:35 +0000 | 
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-02-05 17:26:35 +0000 | 
| commit | 39cb8fe0ac56d1fb5639b0bf6df59faab1cbccbb (patch) | |
| tree | 08cd77ac6f58404b1bf73a44f3f5020588e9e496 /ext/mssql/php_mssql.c | |
| parent | bf609338ae8aa3412d36ad062162a37a2285fb8d (diff) | |
| download | php-git-39cb8fe0ac56d1fb5639b0bf6df59faab1cbccbb.tar.gz | |
Fix PostgreSQL startup routine in thread-safe mode
Diffstat (limited to 'ext/mssql/php_mssql.c')
| -rw-r--r-- | ext/mssql/php_mssql.c | 20 | 
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index dfa3451c5b..d239080eb5 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -83,26 +83,6 @@ DLEXPORT zend_module_entry *get_module(void) { return &mssql_module_entry; };  #define CHECK_LINK(link) { if (link==-1) { php_error(E_WARNING,"MS SQL:  A link to the server could not be established"); RETURN_FALSE; } } -static PHP_INI_DISP(display_link_numbers) -{ -	char *value; - -	if (type==PHP_INI_DISPLAY_ORIG && ini_entry->modified) { -		value = ini_entry->orig_value; -	} else if (ini_entry->value) { -		value = ini_entry->value; -	} else { -		value = NULL; -	} - -	if (value) { -		if (atoi(value)==-1) { -			PUTS("Unlimited"); -		} else { -			php_printf("%s", value); -		} -	} -}  PHP_INI_BEGIN()  	STD_PHP_INI_BOOLEAN("mssql.allow_persistent",		"1",	PHP_INI_SYSTEM,	OnUpdateBool,	allow_persistent,			php_mssql_globals,		mssql_globals)  | 
