mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 10:14:19 +01:00
Fixed password check problem on windows (Bug #464)
This commit is contained in:
parent
49938821c2
commit
9f10eec5ba
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ check_connections(THD *thd)
|
|||
#if !defined(HAVE_SYS_UN_H) || defined(HAVE_mit_thread)
|
||||
/* Fast local hostname resolve for Win32 */
|
||||
if (!strcmp(thd->ip,"127.0.0.1"))
|
||||
thd->host=(char*) localhost;
|
||||
thd->host= thd->host_or_ip= (char*) localhost;
|
||||
else
|
||||
#endif
|
||||
if (!(specialflag & SPECIAL_NO_RESOLVE))
|
||||
|
|
Loading…
Add table
Reference in a new issue