~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.cc

  • Committer: Mark Atwood
  • Date: 2008-12-29 21:49:54 UTC
  • mto: (754.1.4 devel)
  • mto: This revision was merged to the branch mainline in revision 755.
  • Revision ID: me@mark.atwood.name-20081229214954-0m9xrjsceg5tr3s6
integrate errmsg plugin into sql_print_* functions

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
  return false;
122
122
}
123
123
 
124
 
bool errmsg_vprintf (Session *session, int priority, const char *format, va_list ap)
 
124
bool errmsg_vprintf (Session *session, int priority, char const *format, va_list ap)
125
125
{
126
126
  bool foreach_rv;
127
127
  errmsg_parms_t parms;
150
150
  return foreach_rv;
151
151
}
152
152
 
153
 
bool errmsg_printf (Session *session, int priority, const char *format, ...)
 
153
bool errmsg_printf (Session *session, int priority, char const *format, ...)
154
154
{
155
155
  bool rv;
156
156
  va_list args;
159
159
  va_end(args);
160
160
  return rv;
161
161
}
 
162