~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.c

Replacing all bzero() calls with memset() calls and removing the bzero.c file.
Also removing check for bzero from the 'configure.ac' autoconf file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3420
3420
 
3421
3421
  compatible_mode_normal_str[0]= 0;
3422
3422
  default_charset= (char *)drizzle_universal_client_charset;
3423
 
  bzero((char*) &ignore_table, sizeof(ignore_table));
 
3423
  memset((char*) &ignore_table, 0, sizeof(ignore_table));
3424
3424
 
3425
3425
  exit_code= get_options(&argc, &argv);
3426
3426
  if (exit_code)