~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/errmsg_stderr/errmsg_stderr.cc

  • Committer: Patrick Crews
  • Date: 2011-01-29 14:17:35 UTC
  • mto: (2126.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2127.
  • Revision ID: gleebix@gmail.com-20110129141735-3y2658vt5ur0a33o
Fixes to make test-dbqp

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
};
56
56
 
57
57
static Error_message_stderr *handler= NULL;
58
 
static int errmsg_stderr_plugin_init(plugin::Context &context)
 
58
static int errmsg_stderr_plugin_init(module::Context &context)
59
59
{
60
60
  handler= new Error_message_stderr();
61
61
  context.add(handler);
72
72
  N_("Error Messages to stderr"),
73
73
  PLUGIN_LICENSE_GPL,
74
74
  errmsg_stderr_plugin_init,
75
 
  NULL, /* system variables */
 
75
  NULL, /* depends */
76
76
  NULL
77
77
}
78
78
DRIZZLE_DECLARE_PLUGIN_END;