~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleadmin.cc

Changed my.cnf to drizzle.cnf and /etc/mysql to /etc/drizzle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
   N_("Password to use when connecting to server. If password is not given it's asked from the tty."),
79
79
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
80
80
  {"port", 'P', N_("Port number to use for connection or 0 for default to, in "
81
 
   "order of preference, my.cnf, $DRIZZLE_TCP_PORT, "
 
81
   "order of preference, drizzle.cnf, $DRIZZLE_TCP_PORT, "
82
82
   "built-in default (" STRINGIFY_ARG(DRIZZLE_PORT) ")."),
83
83
   (char**) &tcp_port,
84
84
   (char**) &tcp_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
165
165
 
166
166
  MY_INIT(argv[0]);
167
167
  drizzle_create(&drizzle);
168
 
  load_defaults("my",load_default_groups,&argc,&argv);
 
168
  load_defaults("drizzle",load_default_groups,&argc,&argv);
169
169
  save_argv = argv;                             /* Save for free_defaults */
170
170
  if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
171
171
  {