~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 11:15:32 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110705111532-zod5hduzwcqe01ea
Use boost::to_lower

Show diffs side-by-side

added added

removed removed

Lines of Context:
463
463
  po::notify(vm);
464
464
  if (vm.count("protocol"))
465
465
  {
466
 
    std::transform(opt_protocol.begin(), opt_protocol.end(),
467
 
      opt_protocol.begin(), ::tolower);
468
 
 
 
466
    boost::to_lower(opt_protocol);
469
467
    if (not opt_protocol.compare("mysql"))
470
468
      use_drizzle_protocol=false;
471
469
    else if (not opt_protocol.compare("drizzle"))