~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/default.c

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
372
372
{
373
373
  DYNAMIC_ARRAY args;
374
374
  TYPELIB group;
375
 
  my_bool found_print_defaults= 0;
 
375
  bool found_print_defaults= 0;
376
376
  uint args_used= 0;
377
377
  int error= 0;
378
378
  MEM_ROOT alloc;
489
489
{
490
490
  char **ext;
491
491
  const char *empty_list[]= { "", 0 };
492
 
  my_bool have_ext= fn_ext(config_file)[0] != 0;
 
492
  bool have_ext= fn_ext(config_file)[0] != 0;
493
493
  const char **exts_to_use= have_ext ? empty_list : f_extensions;
494
494
 
495
495
  for (ext= (char**) exts_to_use; *ext; ext++)
590
590
  const int max_recursion_level= 10;
591
591
  FILE *fp;
592
592
  uint line=0;
593
 
  my_bool found_group=0;
 
593
  bool found_group=0;
594
594
  uint i;
595
595
  MY_DIR *search_dir;
596
596
  FILEINFO *search_file;
858
858
void my_print_default_files(const char *conf_file)
859
859
{
860
860
  const char *empty_list[]= { "", 0 };
861
 
  my_bool have_ext= fn_ext(conf_file)[0] != 0;
 
861
  bool have_ext= fn_ext(conf_file)[0] != 0;
862
862
  const char **exts_to_use= have_ext ? empty_list : f_extensions;
863
863
  char name[FN_REFLEN], **ext;
864
864
  const char **dirs;
937
937
#else
938
938
#define ADD_DIRECTORY(DIR) \
939
939
  do { \
940
 
    my_bool rc= ADD_DIRECTORY_INTERNAL(DIR); \
 
940
    bool rc= ADD_DIRECTORY_INTERNAL(DIR); \
941
941
    DBUG_ASSERT(rc == FALSE);                   /* Success */ \
942
942
  } while (0)
943
943
#endif