~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlcheck.c

  • Committer: Brian Aker
  • Date: 2008-07-13 06:35:46 UTC
  • Revision ID: brian@tangent.org-20080713063546-w1fzi89wzvf6o517
Bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#define EX_MYSQLERR 2
29
29
 
30
30
static MYSQL mysql_connection, *sock = 0;
31
 
static my_bool opt_alldbs = 0, opt_check_only_changed = 0, opt_extended = 0,
 
31
static bool opt_alldbs = 0, opt_check_only_changed = 0, opt_extended = 0,
32
32
               opt_compress = 0, opt_databases = 0, opt_fast = 0,
33
33
               opt_medium_check = 0, opt_quick = 0, opt_all_in_1 = 0,
34
34
               opt_silent = 0, opt_auto_repair = 0, ignore_errors = 0,
238
238
 
239
239
#include <help_end.h>
240
240
 
241
 
static my_bool
 
241
static bool
242
242
get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
243
243
               char *argument)
244
244
{
686
686
  MYSQL_ROW row;
687
687
  char prev[NAME_LEN*2+2];
688
688
  uint i;
689
 
  my_bool found_error=0;
 
689
  bool found_error=0;
690
690
 
691
691
  res = mysql_use_result(sock);
692
692
 
694
694
  for (i = 0; (row = mysql_fetch_row(res)); i++)
695
695
  {
696
696
    int changed = strcmp(prev, row[0]);
697
 
    my_bool status = !strcmp(row[2], "status");
 
697
    bool status = !strcmp(row[2], "status");
698
698
 
699
699
    if (status)
700
700
    {