~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/errmsg_stderr/errmsg_stderr.cc

  • Committer: Brian Aker
  • Date: 2009-01-25 02:52:05 UTC
  • mfrom: (801.1.4 testable)
  • Revision ID: brian@gir.tangent.org-20090125025205-zlahg6u6z0w95v64
Merge from Myself

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
/* todo, make this dynamic as needed */
29
29
#define MAX_MSG_LEN 8192
30
30
 
31
 
bool errmsg_stderr_func (Session *session __attribute__((unused)),
32
 
                         int priority __attribute__((unused)),
 
31
bool errmsg_stderr_func (Session *,
 
32
                         int ,
33
33
                         const char *format, va_list ap)
34
34
{
35
35
  char msgbuf[MAX_MSG_LEN];