~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Monty Taylor
  • Date: 2009-04-12 23:43:01 UTC
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090412234301-nqswlv32mh4oxonl
Removed mysys/mystrings things from client/ progs. Still need to get rid of my_getopt, but I think that's all now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
347
347
  if (opt_ignore_lines >= 0)
348
348
  {
349
349
    end= strcpy(end, " IGNORE ")+8;
350
 
    end= int64_t2str(opt_ignore_lines, end, 10);
 
350
    ostringstream buffer;
 
351
    buffer << opt_ignore_lines;
 
352
    end= strcpy(end, buffer.str().c_str())+ buffer.str().size();
351
353
    end= strcpy(end, " LINES")+6;
352
354
  }
353
355
  if (opt_columns)