~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/auth_pam/auth_pam.cc

  • Committer: Brian Aker
  • Date: 2009-08-11 20:22:59 UTC
  • mfrom: (1093.1.59 captain)
  • Revision ID: brian@gaz-20090811202259-5a92huu2yqmzdx1u
MErge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
 
110
110
static Authentication *auth= NULL;
111
111
 
112
 
static int initialize(PluginRegistry &registry)
 
112
static int initialize(drizzled::plugin::Registry &registry)
113
113
{
114
114
  auth= new Auth_pam();
115
115
  registry.add(auth);
116
116
  return 0;
117
117
}
118
118
 
119
 
static int finalize(PluginRegistry &registry)
 
119
static int finalize(drizzled::plugin::Registry &registry)
120
120
{
121
121
 
122
122
  if (auth)