~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/mysql_protocol/mysql_protocol.cc

  • Committer: Andrew Hutchings
  • Date: 2010-12-09 13:38:33 UTC
  • mto: This revision was merged to the branch mainline in revision 2006.
  • Revision ID: andrew@linuxjedi.co.uk-20101209133833-wzy2u3d9z4pmd4ji
Add admin connection to client/server protocols

Show diffs side-by-side

added added

removed removed

Lines of Context:
740
740
  uint32_t user_len= passwd - user - 1;
741
741
  char *l_db= passwd;
742
742
 
 
743
  if ((client_capabilities & CLIENT_ADMIN) && (strncmp(user, "root", 4) == 0))
 
744
    is_admin_connection= true;
 
745
 
743
746
  /*
744
747
    Only support new password format.
745
748