~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2008-08-09 21:43:24 UTC
  • mfrom: (279.1.4 codestyle)
  • Revision ID: brian@tangent.org-20080809214324-jy2c15bx49naddsf
Merge from Monty

Show diffs side-by-side

added added

removed removed

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