~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzletest.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 22:37:37 UTC
  • mfrom: (656.1.6 devel)
  • mto: (656.1.8 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206223737-viem01l5uhm0w14r
mergedĀ fromĀ lp:drizzle/mordred

Show diffs side-by-side

added added

removed removed

Lines of Context:
6739
6739
    for (i=0 ; i < count ; i++)
6740
6740
    {
6741
6741
      to_array[i]=to_pos;
6742
 
      to_pos=my_stpcpy(to_pos,to[i])+1;
 
6742
      to_pos=strcpy(to_pos,to[i])+strlen(to[i])+1;
6743
6743
    }
6744
6744
    rep_str[0].found=1;
6745
6745
    rep_str[0].replace_string=0;
7025
7025
  pa->flag[pa->typelib.count]=0;      /* Reset flag */
7026
7026
  pa->typelib.type_names[pa->typelib.count++]= (char*) pa->str+pa->length;
7027
7027
  pa->typelib.type_names[pa->typelib.count]= NULL;  /* Put end-mark */
7028
 
  my_stpcpy((char*) pa->str+pa->length,name);
 
7028
  strcpy((char*) pa->str+pa->length,name);
7029
7029
  pa->length+=length;
7030
7030
  return(0);
7031
7031
} /* insert_pointer_name */