~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_base.cc

Merging from trunk r102

Show diffs side-by-side

added added

removed removed

Lines of Context:
6667
6667
      {
6668
6668
        char *ext= fn_ext(file->name);
6669
6669
        uint ext_len= strlen(ext);
6670
 
        uint filePath_len= my_snprintf(filePath, sizeof(filePath),
6671
 
                                       "%s%c%s", tmpdir, FN_LIBCHAR,
6672
 
                                       file->name);
 
6670
        uint filePath_len= snprintf(filePath, sizeof(filePath),
 
6671
                                    "%s%c%s", tmpdir, FN_LIBCHAR,
 
6672
                                    file->name);
6673
6673
        if (!bcmp((uchar*) reg_ext, (uchar*) ext, ext_len))
6674
6674
        {
6675
6675
          handler *handler_file= 0;