~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.cc

  • Committer: Brian Aker
  • Date: 2010-10-12 06:13:30 UTC
  • mto: (1857.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1858.
  • Revision ID: brian@tangent.org-20101012061330-omrzr0yla4ybul3t
More testing around events.

Show diffs side-by-side

added added

removed removed

Lines of Context:
787
787
 
788
788
  session->getSecurityContext().setUser(user);
789
789
 
790
 
  return session->checkUser(string(passwd, passwd_len),
791
 
                            string(l_db ? l_db : ""));
792
 
 
 
790
  return session->checkUser(passwd, passwd_len, l_db);
793
791
}
794
792
 
795
793
bool ClientMySQLProtocol::netStoreData(const unsigned char *from, size_t length)