~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

mergingĀ fromĀ main

Show diffs side-by-side

added added

removed removed

Lines of Context:
1529
1529
  {
1530
1530
    if (table_name && table_name[0])
1531
1531
    {
1532
 
      strmov(t_name_buff, table_name);
 
1532
      stpcpy(t_name_buff, table_name);
1533
1533
      my_casedn_str(files_charset_info, t_name_buff);
1534
1534
      t_name= t_name_buff;
1535
1535
    }
1536
1536
    if (db_name && db_name[0])
1537
1537
    {
1538
 
      strmov(d_name_buff, db_name);
 
1538
      stpcpy(d_name_buff, db_name);
1539
1539
      my_casedn_str(files_charset_info, d_name_buff);
1540
1540
      d_name= d_name_buff;
1541
1541
    }