From: Jim Meyering Date: Sat, 13 May 1995 13:06:46 +0000 (+0000) Subject: (statfs): Use stat, not safe_stat. X-Git-Tag: textutils-1_12_1~194 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=627abb8251a2fd1e9f7e4ae65360a727aaddaf93;p=thirdparty%2Fcoreutils.git (statfs): Use stat, not safe_stat. --- diff --git a/lib/fsusage.c b/lib/fsusage.c index 1784d4a2a4..82bdd19702 100644 --- a/lib/fsusage.c +++ b/lib/fsusage.c @@ -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;