~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzlecheck.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:
128
128
   "Password to use when connecting to server. If password is not given it's solicited on the tty.",
129
129
   0, 0, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
130
130
  {"port", 'P', "Port number to use for connection or 0 for default to, in "
131
 
   "order of preference, my.cnf, $DRIZZLE_TCP_PORT, "
 
131
   "order of preference, drizzle.cnf, $DRIZZLE_TCP_PORT, "
132
132
   "built-in default (" STRINGIFY_ARG(DRIZZLE_PORT) ").",
133
133
   (char**) &opt_mysql_port,
134
134
   (char**) &opt_mysql_port, 0, GET_UINT, REQUIRED_ARG, 0, 0, 0, 0, 0,
214
214
  printf("OR     %s [OPTIONS] --databases DB1 [DB2 DB3...]\n",
215
215
   my_progname);
216
216
  printf("OR     %s [OPTIONS] --all-databases\n", my_progname);
217
 
  print_defaults("my", load_default_groups);
 
217
  print_defaults("drizzle", load_default_groups);
218
218
  my_print_help(my_long_options);
219
219
  my_print_variables(my_long_options);
220
220
} /* usage */
299
299
    exit(0);
300
300
  }
301
301
 
302
 
  load_defaults("my", load_default_groups, argc, argv);
 
302
  load_defaults("drizzle", load_default_groups, argc, argv);
303
303
 
304
304
  if ((ho_error=handle_options(argc, argv, my_long_options, get_one_option)))
305
305
    exit(ho_error);