~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sys_var.cc

  • Committer: Mark Atwood
  • Date: 2011-08-16 05:41:07 UTC
  • mfrom: (2392.1.1 drizzle-autoconf)
  • Revision ID: me@mark.atwood.name-20110816054107-59bmf3pwje230t6l
Tags: 2011.08.24
mergeĀ lp:~brianaker/drizzle/help-fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
1375
1375
  uint32_t length= strlen(name);
1376
1376
  for (; opt->name; opt++)
1377
1377
  {
1378
 
    if (!getopt_compare_strings(opt->name, name, length) && !opt->name[length])
 
1378
    if (not getopt_compare_strings(opt->name, name, length) and not opt->name[length])
1379
1379
    {
1380
1380
      /*
1381
1381
      Only accept the option if one can set values through it.