Automerge.

This commit is contained in:
Ramil Kalimullin 2010-05-25 18:07:47 +04:00
commit 32d6a7fc8f

View File

@ -493,6 +493,7 @@ int check_user(THD *thd, enum enum_server_command command,
} }
send_ok(thd); send_ok(thd);
thd->password= test(passwd_len); // remember for error messages thd->password= test(passwd_len); // remember for error messages
#ifndef EMBEDDED_LIBRARY
/* /*
Allow the network layer to skip big packets. Although a malicious Allow the network layer to skip big packets. Although a malicious
authenticated session might use this to trick the server to read authenticated session might use this to trick the server to read
@ -500,6 +501,7 @@ int check_user(THD *thd, enum enum_server_command command,
that needs to be preserved as to not break backwards compatibility. that needs to be preserved as to not break backwards compatibility.
*/ */
thd->net.skip_big_packet= TRUE; thd->net.skip_big_packet= TRUE;
#endif
/* Ready to handle queries */ /* Ready to handle queries */
DBUG_RETURN(0); DBUG_RETURN(0);
} }