~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.cc

  • Committer: Mark Atwood
  • Date: 2009-01-05 04:37:22 UTC
  • mto: (758.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: me@mark.atwood.name-20090105043722-03l4mzcxi4yjjjih
replace sql_print_error etc with errmsg_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
  return foreach_rv;
151
151
}
152
152
 
153
 
bool errmsg_printf (Session *session, int priority, char const *format, ...)
154
 
{
155
 
  bool rv;
156
 
  va_list args;
157
 
  va_start(args, format);
158
 
  rv= errmsg_vprintf(session, priority, format, args);
159
 
  va_end(args);
160
 
  return rv;
161
 
}
162
153