~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/default.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:
610
610
  }
611
611
  fn_format(name,name,"","",4);
612
612
  {
613
 
    MY_STAT stat_info;
614
 
    if (!my_stat(name,&stat_info,MYF(0)))
 
613
    struct stat stat_info;
 
614
    if (stat(name,&stat_info))
615
615
      return 1;
616
616
    /*
617
617
      Ignore world-writable regular files.