~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/myisamchk.c

  • Committer: Brian Aker
  • Date: 2008-07-13 19:39:24 UTC
  • Revision ID: brian@tangent.org-20080713193924-tf5yc33skcq224uf
More my_bool conversion. This time the set_var class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
466
466
 
467
467
         /* Read options */
468
468
 
469
 
static my_bool
 
469
static bool
470
470
get_one_option(int optid,
471
471
               const struct my_option *opt __attribute__((unused)),
472
472
               char *argument)
473
473
{
474
474
  switch (optid) {
475
 
#ifdef __NETWARE__
476
 
  case OPT_AUTO_CLOSE:
477
 
    setscreenmode(SCR_AUTOCLOSE_ON_EXIT);
478
 
    break;
479
 
#endif
480
475
  case 'a':
481
476
    if (argument == disabled_my_option)
482
477
      check_param.testflag&= ~T_STATISTICS;