~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/test_authz/test_authz.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:
70
70
  return 0;
71
71
}
72
72
 
73
 
static int deinit(plugin::Context &context)
74
 
{
75
 
  context.remove(authz);
76
 
  delete authz;
77
 
  return 0;
78
 
}
79
 
 
80
73
} /* namespace authz */
81
74
 
82
 
DRIZZLE_PLUGIN(authz::init, authz::deinit, NULL);
 
75
DRIZZLE_PLUGIN(authz::init, NULL);