~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Toru Maesaka
  • Date: 2008-12-14 08:26:38 UTC
  • mto: (670.1.24 devel)
  • mto: This revision was merged to the branch mainline in revision 676.
  • Revision ID: dev@torum.net-20081214082638-c8uje8oiwk4s2dh0
First pass of replacing MySQL's strxmov with libc alternatives

Show diffs side-by-side

added added

removed removed

Lines of Context:
3251
3251
    while ((row= drizzle_fetch_row(res)) && atoi(row[3]) > 1)
3252
3252
    {
3253
3253
      quoted_field= quote_name(row[4], buff, 0);
3254
 
      end= strxmov(end, ",", quoted_field, NULL);
 
3254
      end+= sprintf(end,",%s",quoted_field);
3255
3255
    }
3256
3256
  }
3257
3257