~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/simple_user_policy/module.cc

  • Committer: patrick crews
  • Date: 2010-05-20 03:29:50 UTC
  • mto: This revision was merged to the branch mainline in revision 1565.
  • Revision ID: patrick.crews@sun.com-20100520032950-7452uruysx9kb6bn
Fixed incorrectly altered test commenting to reflect the proper bug descriptions (mysqldump v. drizzledump)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
namespace simple_user_policy
29
29
{
30
30
 
31
 
static int init(module::Context &context)
 
31
static int init(plugin::Context &context)
32
32
{
33
33
  context.add(new Policy);
34
34
  return 0;
36
36
 
37
37
} /* namespace simple_user_policy */
38
38
 
39
 
DRIZZLE_PLUGIN(simple_user_policy::init, NULL, NULL);
 
39
DRIZZLE_PLUGIN(simple_user_policy::init, NULL);