diff options
author | Jim Meyering <jim@meyering.net> | 1995-05-13 12:48:33 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-05-13 12:48:33 +0000 |
commit | 99ce9e9832afce3278226874af6a2a961d52fbbe (patch) | |
tree | f46ec12c1a198bfd1e0e978611df93e928fa3c2e /src/rm.c | |
parent | 466ecc5db8326937b43a3c86d4554060d79d3c2c (diff) | |
download | coreutils-99ce9e9832afce3278226874af6a2a961d52fbbe.tar.xz |
Use stat (lstat), not safe_stat (safe_lstat).
Diffstat (limited to 'src/rm.c')
-rw-r--r-- | src/rm.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -24,7 +24,6 @@ #include "system.h" #include "version.h" -#include "safe-lstat.h" #include "error.h" #ifdef D_INO_IN_DIRENT @@ -199,7 +198,7 @@ rm () return 1; } - if (safe_lstat (pathname, &path_stats)) + if (lstat (pathname, &path_stats)) { if (errno == ENOENT && ignore_missing_files) return 0; |