~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2009-02-05 09:40:42 UTC
  • Revision ID: brian@tangent.org-20090205094042-e51fvbgbb8ppt2m8
Fixed session call from function to method.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1099
1099
  }
1100
1100
 
1101
1101
  pthread_mutex_unlock(&LOCK_xid_cache);
1102
 
  my_eof(session);
 
1102
  session->my_eof();
1103
1103
  return(0);
1104
1104
}
1105
1105
 
4172
4172
    db_type->show_status(db_type, session, stat_print, stat) ? 1 : 0;
4173
4173
 
4174
4174
  if (!result)
4175
 
    my_eof(session);
 
4175
    session->my_eof();
4176
4176
  return result;
4177
4177
}
4178
4178