~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Stewart Smith
  • Date: 2009-12-02 06:01:21 UTC
  • mto: (1237.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1238.
  • Revision ID: stewart@flamingspork.com-20091202060121-68gyfqifqcjcmi2v
my_end() no longer requires an argument (we removed them all)

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
            ignore_unique= false, opt_low_priority= false,
62
62
            tty_password= false;
63
63
 
64
 
static uint32_t opt_use_threads= 0, opt_local_file= 0, my_end_arg= 0;
 
64
static uint32_t opt_use_threads= 0, opt_local_file= 0;
65
65
static char  *opt_password= NULL, *current_user= NULL,
66
66
    *current_host= NULL, *current_db= NULL, *fields_terminated= NULL,
67
67
    *lines_terminated= NULL, *enclosed= NULL, *opt_enclosed= NULL,
660
660
  }
661
661
  free(opt_password);
662
662
  free_defaults(argv_to_free);
663
 
  my_end(my_end_arg);
 
663
  my_end();
664
664
  return(exitcode);
665
665
}