~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Mark Atwood
  • Date: 2011-08-12 04:08:33 UTC
  • mfrom: (2385.2.17 refactor5)
  • Revision ID: me@mark.atwood.name-20110812040833-u6j85nc6ahuc0dtz
mergeĀ lp:~olafvdspek/drizzle/refactor5

Show diffs side-by-side

added added

removed removed

Lines of Context:
354
354
{
355
355
try
356
356
{
357
 
  int error=0;
358
 
 
359
357
  po::options_description commandline_options("Options used only in command line");
360
358
  commandline_options.add_options()
361
359
 
601
599
    }
602
600
 
603
601
    for (; *argv != NULL; argv++)
604
 
      if ((error= write_to_table(*argv, con)))
 
602
      if (int error= write_to_table(*argv, con))
605
603
        if (exitcode == 0)
606
604
          exitcode= error;
607
605
    db_disconnect(current_host, con);