~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/errmsg.cc

  • Committer: Lee
  • Date: 2009-01-06 20:24:58 UTC
  • mfrom: (759 drizzle)
  • mto: This revision was merged to the branch mainline in revision 763.
  • Revision ID: lbieber@lbieber-desktop-20090106202458-82n4kyftrnakvl4r
merge with latest from the trunk

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