~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_loadpath.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:
44
44
      strcpy(buff,path);                        /* Return org file name */
45
45
  }
46
46
  else
47
 
    strxmov(buff,own_path_prefix,path,NULL);
 
47
    sprintf(buff,"%s%s",own_path_prefix,path);
48
48
  strcpy(to,buff);
49
49
  return(to);
50
50
} /* my_load_path */