~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to extra/comp_err.c

  • Committer: Stewart Smith
  • Date: 2008-06-30 05:33:25 UTC
  • mfrom: (12.2.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: stewart@flamingspork.com-20080630053325-mwrv6bjaufcpvj8n
merge my work

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
      {