~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/comp_err.c

  • Committer: brian
  • Date: 2008-06-29 12:18:49 UTC
  • Revision ID: brian@localhost.localdomain-20080629121849-2le5txjj7tkdq54f
Fix for stat, NETWARE removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
269
269
  struct languages *tmp_lang;
270
270
  struct errors *tmp_error;
271
271
 
272
 
  MY_STAT stat_info;
 
272
  struct stat stat_info;
273
273
  DBUG_ENTER("create_sys_files");
274
274
 
275
275
  /*
288
288
 
289
289
    outfile_end= strxmov(outfile, DATADIRECTORY, 
290
290
                         tmp_lang->lang_long_name, NullS);
291
 
    if (!my_stat(outfile, &stat_info,MYF(0)))
 
291
    if (stat(outfile, &stat_info))
292
292
    {
293
293
      if (my_mkdir(outfile, 0777,MYF(0)) < 0)
294
294
      {