(isdir): Usage stat, not safe_stat.
authorJim Meyering <jim@meyering.net>
Sat, 13 May 1995 13:07:54 +0000 (13:07 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 13 May 1995 13:07:54 +0000 (13:07 +0000)
lib/isdir.c

index c9549bd..aafa746 100644 (file)
@@ -41,5 +41,5 @@ isdir (path)
 {
   struct stat stats;
 
-  return safe_stat (path, &stats) == 0 && S_ISDIR (stats.st_mode);
+  return stat (path, &stats) == 0 && S_ISDIR (stats.st_mode);
 }