diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-17 19:16:50 +0000 |
commit | 02d3b39420839c9e09fd7c391f158e5c510bd600 (patch) | |
tree | 0dbd660f36a226fc545e719cb226114bb60f6c7c /ext/mysql/php_mysql.c | |
parent | 9ebd037226fcaa1804df73c419d5529a16957e0b (diff) | |
download | php-git-02d3b39420839c9e09fd7c391f158e5c510bd600.tar.gz |
More php3_ annihilation
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 7c65958403..279fe37722 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -377,7 +377,7 @@ static void php_mysql_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent) php_error(E_NOTICE,"SQL safe mode in effect - ignoring host/user/password information"); } host=passwd=NULL; - user=_php3_get_current_user(); + user=php_get_current_user(); hashed_details_length = strlen(user)+5+3; hashed_details = (char *) emalloc(hashed_details_length+1); sprintf(hashed_details,"mysql__%s_",user); |