~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: lbieber
  • Date: 2010-09-26 21:48:00 UTC
  • mfrom: (1795.1.1 build)
  • Revision ID: lbieber@orisndriz08-20100926214800-ti8b24wb7pwv21eg
Merge Andrew - fix bug 646202 - Turn off Boost PO option guessing

Show diffs side-by-side

added added

removed removed

Lines of Context:
5479
5479
 
5480
5480
  po::variables_map vm;
5481
5481
 
 
5482
  // Disable allow_guessing
 
5483
  int style = po::command_line_style::default_style & ~po::command_line_style::allow_guessing;
 
5484
 
5482
5485
  po::store(po::command_line_parser(argc, argv).options(long_options).
5483
 
            positional(p).extra_parser(parse_password_arg).run(), vm);
 
5486
            style(style).positional(p).extra_parser(parse_password_arg).run(),
 
5487
            vm);
5484
5488
 
5485
5489
  if (! vm["no-defaults"].as<bool>())
5486
5490
  {