~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-08-03 22:14:59 UTC
  • Revision ID: brian@tangent.org-20080803221459-gz8on1zlp22dbr9d
First pass on PAM auth

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
/*
199
199
  Used with --help for detailed option
200
200
*/
201
 
static bool opt_help= 0, opt_verbose= 0;
 
201
static bool opt_help= false;
202
202
 
203
203
arg_cmp_func Arg_comparator::comparator_matrix[5][2] =
204
204
{{&Arg_comparator::compare_string,     &Arg_comparator::compare_e_string},
3455
3455
   IF_PURIFY(0,1), 0, 0, 0, 0, 0},
3456
3456
  {"user", 'u', "Run mysqld daemon as user.", 0, 0, 0, GET_STR, REQUIRED_ARG,
3457
3457
   0, 0, 0, 0, 0, 0},
3458
 
  {"verbose", 'v', "Used with --help option for detailed help",
3459
 
   (char**) &opt_verbose, (char**) &opt_verbose, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0,
3460
 
   0, 0},
3461
3458
  {"version", 'V', "Output version information and exit.", 0, 0, 0, GET_NO_ARG,
3462
3459
   NO_ARG, 0, 0, 0, 0, 0, 0},
3463
3460
  {"warnings", 'W', "Deprecated; use --log-warnings instead.",
4111
4108
Copyright (C) 2000 MySQL AB, by Monty and others\n\
4112
4109
This software comes with ABSOLUTELY NO WARRANTY. This is free software,\n\
4113
4110
and you are welcome to modify and redistribute it under the GPL license\n\n\
4114
 
Starts the MySQL database server\n");
 
4111
Starts the Drizzle database server\n");
4115
4112
 
4116
4113
  printf("Usage: %s [OPTIONS]\n", my_progname);
4117
 
  if (!opt_verbose)
4118
 
    puts("\nFor more help options (several pages), use mysqld --verbose --help");
4119
 
  else
4120
4114
  {
 
4115
#ifdef FOO
4121
4116
  print_defaults(MYSQL_CONFIG_NAME,load_default_groups);
4122
4117
  puts("");
4123
4118
  set_ports();
 
4119
#endif
4124
4120
 
4125
4121
  /* Print out all the options including plugin supplied options */
4126
4122
  my_print_help_inc_plugins(my_long_options, sizeof(my_long_options)/sizeof(my_option));
4127
4123
 
4128
4124
  puts("\n\
4129
4125
To see what values a running DrizzleD server is using, type\n\
4130
 
'drizzleadmin variables' instead of 'mysqld --verbose --help'.");
 
4126
'drizzleadmin variables' instead of 'drizzled --help'.");
4131
4127
  }
4132
4128
}
4133
4129