~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/loader.cc

Fix pidfile argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
static PluginOptions opt_plugin_load;
76
76
static PluginOptions opt_plugin_add;
77
77
static PluginOptions opt_plugin_remove;
78
 
char *opt_plugin_dir_ptr;
79
78
char opt_plugin_dir[FN_REFLEN];
80
79
const char *builtin_plugins= PANDORA_BUILTIN_LIST;
81
80
 
448
447
  return false;
449
448
}
450
449
 
451
 
void plugin_finalize(module::Registry &registry)
 
450
bool plugin_finalize(module::Registry &registry)
452
451
{
453
452
 
454
453
  /*
469
468
      {
470
469
        registry.remove(module);
471
470
        delete_module(module);
 
471
        return true;
472
472
      }
473
473
    }
474
474
  }
 
475
  return false;
475
476
}
476
477
 
477
478
class PrunePlugin :