~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_file.c

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
#include "mysys_priv.h"
17
17
#include "my_static.h"
18
 
#include <m_string.h>
 
18
#include <mystrings/m_string.h>
19
19
 
20
20
/*
21
21
  set how many open files we want to be able to handle
99
99
  /* Copy any initialized files */
100
100
  memcpy((char*) tmp, (char*) my_file_info,
101
101
         sizeof(*tmp) * min(my_file_limit, files));
102
 
  bzero((char*) (tmp + my_file_limit),
103
 
        max((int) (files- my_file_limit), 0)*sizeof(*tmp));
 
102
  memset((char*) (tmp + my_file_limit), 0,
 
103
         max((int) (files- my_file_limit), 0)*sizeof(*tmp));
104
104
  my_free_open_file_info();                     /* Free if already allocated */
105
105
  my_file_info= tmp;
106
106
  my_file_limit= files;