~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_syslog/logging_syslog.cc

  • Committer: Monty Taylor
  • Date: 2010-03-06 02:08:13 UTC
  • mto: This revision was merged to the branch mainline in revision 1381.
  • Revision ID: mordred@inaugust.com-20100306020813-c37d0b39004nl1zf
Remove plugin deinit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
  return 0;
187
187
}
188
188
 
189
 
static int logging_syslog_plugin_deinit(drizzled::plugin::Context &context)
190
 
{
191
 
  context.remove(handler);
192
 
  delete handler;
193
 
 
194
 
  return 0;
195
 
}
196
 
 
197
189
static DRIZZLE_SYSVAR_BOOL(
198
190
  enable,
199
191
  sysvar_logging_syslog_enable,
286
278
  N_("Log to syslog"),
287
279
  PLUGIN_LICENSE_GPL,
288
280
  logging_syslog_plugin_init,
289
 
  logging_syslog_plugin_deinit,
290
281
  logging_syslog_system_variables,
291
282
  NULL
292
283
}