~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_connect.cc

  • Committer: Brian Aker
  • Date: 2008-07-20 07:36:57 UTC
  • Revision ID: brian@tangent.org-20080720073657-qrzqnfu31mut8vjd
my_bool...

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
  */
92
92
  thd->reset_db(NULL, 0);
93
93
 
94
 
  my_bool opt_secure_auth_local;
 
94
  bool opt_secure_auth_local;
95
95
  pthread_mutex_lock(&LOCK_global_system_variables);
96
96
  opt_secure_auth_local= opt_secure_auth;
97
97
  pthread_mutex_unlock(&LOCK_global_system_variables);
174
174
*/
175
175
 
176
176
extern "C" uchar *get_key_conn(user_conn *buff, size_t *length,
177
 
                              my_bool not_used __attribute__((unused)))
 
177
                               bool not_used __attribute__((unused)))
178
178
{
179
179
  *length= buff->len;
180
180
  return (uchar*) buff->user;