~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset.cc

MergedĀ fromĀ Toru.

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
        }
192
192
      }
193
193
      
194
 
      my_stpcpy(get_charsets_dir(fname), MY_CHARSET_INDEX);
 
194
      strcpy(get_charsets_dir(fname), MY_CHARSET_INDEX);
195
195
      charset_initialized=1;
196
196
    }
197
197
    pthread_mutex_unlock(&THR_LOCK_charset);
288
288
  if (!cs && (flags & MY_WME))
289
289
  {
290
290
    char index_file[FN_REFLEN + sizeof(MY_CHARSET_INDEX)], cs_string[23];
291
 
    my_stpcpy(get_charsets_dir(index_file),MY_CHARSET_INDEX);
 
291
    strcpy(get_charsets_dir(index_file),MY_CHARSET_INDEX);
292
292
    cs_string[0]='#';
293
293
    int10_to_str(cs_number, cs_string+1, 10);
294
294
    my_error(EE_UNKNOWN_CHARSET, MYF(ME_BELL), cs_string, index_file);
308
308
  if (!cs && (flags & MY_WME))
309
309
  {
310
310
    char index_file[FN_REFLEN + sizeof(MY_CHARSET_INDEX)];
311
 
    my_stpcpy(get_charsets_dir(index_file),MY_CHARSET_INDEX);
 
311
    strcpy(get_charsets_dir(index_file),MY_CHARSET_INDEX);
312
312
    my_error(EE_UNKNOWN_COLLATION, MYF(ME_BELL), cs_name, index_file);
313
313
  }
314
314
 
331
331
  if (!cs && (flags & MY_WME))
332
332
  {
333
333
    char index_file[FN_REFLEN + sizeof(MY_CHARSET_INDEX)];
334
 
    my_stpcpy(get_charsets_dir(index_file),MY_CHARSET_INDEX);
 
334
    strcpy(get_charsets_dir(index_file),MY_CHARSET_INDEX);
335
335
    my_error(EE_UNKNOWN_CHARSET, MYF(ME_BELL), cs_name, index_file);
336
336
  }
337
337