~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_update.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:
1289
1289
    temp_fields.concat(fields_for_table[cnt]);
1290
1290
 
1291
1291
    /* Make an unique key over the first field to avoid duplicated updates */
1292
 
    bzero((char*) &group, sizeof(group));
 
1292
    memset((char*) &group, 0, sizeof(group));
1293
1293
    group.asc= 1;
1294
1294
    group.item= (Item**) temp_fields.head_ref();
1295
1295