~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/field/timestamp.cc

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:
361
361
  {                                   /* Zero time is "000000" */
362
362
    if (fuzzydate & TIME_NO_ZERO_DATE)
363
363
      return 1;
364
 
    bzero((char*) ltime,sizeof(*ltime));
 
364
    memset((char*) ltime, 0, sizeof(*ltime));
365
365
  }
366
366
  else
367
367
  {