~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/rpl_mi.cc

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include <my_global.h> // For HAVE_REPLICATION
17
16
#include "mysql_priv.h"
18
 
#include <my_dir.h>
19
17
 
20
18
#include "rpl_mi.h"
21
19
 
40
38
  ssl_ca[0]= 0; ssl_capath[0]= 0; ssl_cert[0]= 0;
41
39
  ssl_cipher[0]= 0; ssl_key[0]= 0;
42
40
 
43
 
  bzero((char*) &file, sizeof(file));
 
41
  memset((char*) &file, 0, sizeof(file));
44
42
  pthread_mutex_init(&run_lock, MY_MUTEX_INIT_FAST);
45
43
  pthread_mutex_init(&data_lock, MY_MUTEX_INIT_FAST);
46
44
  pthread_cond_init(&data_cond, NULL);
119
117
    return(0);
120
118
  }
121
119
 
122
 
  mi->mysql=0;
 
120
  mi->drizzle=0;
123
121
  mi->file_id=1;
124
122
  fn_format(fname, master_info_fname, mysql_data_home, "", 4+32);
125
123