~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to plugin/auth_all/auth_all.cc

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
 
80
80
static void init_options(drizzled::module::option_context &context)
81
81
{
82
 
  context("allow_anonymous", 
 
82
  context("allow-anonymous", 
83
83
          po::value<bool>(&opt_allow_anonymous)->default_value(false),
84
84
          N_("Allow anonymous access"));
85
85
}
90
90
DRIZZLE_DECLARE_PLUGIN
91
91
{
92
92
  DRIZZLE_VERSION_ID,
93
 
  "Allow-All-Authentication",
 
93
  "auth_all",
94
94
  "1.0",
95
95
  "Brian Aker",
96
 
  "Data Dictionary for utility tables",
 
96
  N_("Allows all users to authenticate regardless of username or password"),
97
97
  PLUGIN_LICENSE_GPL,
98
98
  auth_all::init,
99
99
  NULL,