~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/rpl_mi.h

  • Committer: Brian Aker
  • Date: 2008-07-20 07:25:05 UTC
  • Revision ID: brian@tangent.org-20080720072505-q4713t2you563w5t
More my_bool... man am I getting tired of writing this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
  char host[HOSTNAME_LENGTH+1];
67
67
  char user[USERNAME_LENGTH+1];
68
68
  char password[MAX_PASSWORD_LENGTH+1];
69
 
  my_bool ssl; // enables use of SSL connection if true
 
69
  bool ssl; // enables use of SSL connection if true
70
70
  char ssl_ca[FN_REFLEN], ssl_capath[FN_REFLEN], ssl_cert[FN_REFLEN];
71
71
  char ssl_cipher[FN_REFLEN], ssl_key[FN_REFLEN];
72
 
  my_bool ssl_verify_server_cert;
 
72
  bool ssl_verify_server_cert;
73
73
 
74
74
  my_off_t master_log_pos;
75
75
  File fd; // we keep the file open, so we need to remember the file pointer