summaryrefslogtreecommitdiff
path: root/ext/mysql/php_mysql.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-12-17 19:16:50 +0000
committerZeev Suraski <zeev@php.net>1999-12-17 19:16:50 +0000
commit02d3b39420839c9e09fd7c391f158e5c510bd600 (patch)
tree0dbd660f36a226fc545e719cb226114bb60f6c7c /ext/mysql/php_mysql.c
parent9ebd037226fcaa1804df73c419d5529a16957e0b (diff)
downloadphp-git-02d3b39420839c9e09fd7c391f158e5c510bd600.tar.gz
More php3_ annihilation
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r--ext/mysql/php_mysql.c2
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);