~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.cc

  • Committer: Brian Aker
  • Date: 2009-01-06 09:02:30 UTC
  • mfrom: (758.1.5 devel)
  • Revision ID: brian@tangent.org-20090106090230-ov94my79hsiz4bes
Merge from Monty

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