(statfs): Use stat, not safe_stat.
authorJim Meyering <jim@meyering.net>
Sat, 13 May 1995 13:06:46 +0000 (13:06 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 13 May 1995 13:06:46 +0000 (13:06 +0000)
lib/fsusage.c

index 1784d4a2a4f36310a8783253378c2c1308d5af1e..82bdd19702d083307fcaa12fbda1908b5acbcd52 100644 (file)
@@ -208,7 +208,7 @@ statfs (path, fsb)
   struct stat stats;
   struct dustat fsd;
 
-  if (safe_stat (path, &stats))
+  if (stat (path, &stats))
     return -1;
   if (dustat (stats.st_dev, 0, &fsd, sizeof (fsd)))
     return -1;