diff options
| author | Pierre Joye <pajoye@php.net> | 2008-07-05 13:12:57 +0000 | 
|---|---|---|
| committer | Pierre Joye <pajoye@php.net> | 2008-07-05 13:12:57 +0000 | 
| commit | 60dbdea125bce7e850a00cf47178199cfedb52e2 (patch) | |
| tree | 73dbca0d7e51e558991dcc89d99fe9fc9024db9e | |
| parent | d71c16bd93d6b27b2f85f9f3ce369cafaee5b661 (diff) | |
| download | php-git-60dbdea125bce7e850a00cf47178199cfedb52e2.tar.gz | |
- fix build (function was never implemented), even if noone uses it (or complained about broken build ;)
| -rw-r--r-- | ext/msql/php_msql.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/msql/php_msql.c b/ext/msql/php_msql.c index b9af3316ca..5d174bd241 100644 --- a/ext/msql/php_msql.c +++ b/ext/msql/php_msql.c @@ -80,9 +80,7 @@ const zend_function_entry msql_functions[] = {  	PHP_FALIAS(msql_fieldlen,		msql_field_len,			NULL)  	PHP_FALIAS(msql_fieldtype,		msql_field_type,		NULL)  	PHP_FALIAS(msql_fieldflags,		msql_field_flags,		NULL) -	 -	PHP_FALIAS(msql_regcase,		sql_regcase,			NULL) -	 +  	PHP_FALIAS(msql_affected_rows,	msql_affected_rows,		NULL)  	/* for downwards compatability */  | 
