~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sj_tmp_table.cc

  • Committer: Toru Maesaka
  • Date: 2008-12-03 07:42:39 UTC
  • mto: (656.1.5 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: dev@torum.net-20081203074239-4qwr4u7prq7uqxet
First pass of replacing MySQL's my_stpcpy() with appropriate libc calls

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
      bitmap_lock_clear_bit(&temp_pool, temp_pool_slot);
121
121
    return(NULL);
122
122
  }
123
 
  my_stpcpy(tmpname,path);
 
123
  strcpy(tmpname,path);
124
124
 
125
125
  /* STEP 4: Create Table description */
126
126
  memset(table, 0, sizeof(*table));