~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unireg.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:
645
645
                     uint32_t keys, KEY *key_info, handler *file)
646
646
{
647
647
  char frm_name[FN_REFLEN];
648
 
  strxmov(frm_name, path, reg_ext, NULL);
 
648
  sprintf(frm_name,"%s%s",path,reg_ext);
649
649
  if (mysql_create_frm(session, frm_name, db, table_name, create_info,
650
650
                       create_fields, keys, key_info, file))
651
651