~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/archive_reader.c

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
       license\n");
311
311
  puts("Read and modify Archive files directly\n");
312
312
  printf("Usage: %s [OPTIONS] file_to_be_looked_at [file_for_backup]\n", my_progname);
313
 
  print_defaults("my", load_default_groups);
 
313
  print_defaults("drizzle", load_default_groups);
314
314
  my_print_help(my_long_options);
315
315
}
316
316
 
322
322
 
323
323
static void get_options(int *argc, char ***argv)
324
324
{
325
 
  load_defaults("my", load_default_groups, argc, argv);
 
325
  load_defaults("drizzle", load_default_groups, argc, argv);
326
326
  default_argv= *argv;
327
327
 
328
328
  handle_options(argc, argv, my_long_options, get_one_option);