From 69f39255bc7f02c65e5f7ff0e6c2788430c47e9c Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 27 Jan 1995 17:03:21 +0000 Subject: Rename SAFE_STAT and SAFE_LSTAT to lower case names. --- src/install.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/install.c') diff --git a/src/install.c b/src/install.c index b79e28d1c..d431bbf23 100644 --- a/src/install.c +++ b/src/install.c @@ -321,7 +321,7 @@ copy_file (from, to, to_created) struct stat from_stats, to_stats; int target_created = 1; - if (SAFE_STAT (from, &from_stats)) + if (safe_stat (from, &from_stats)) { error (0, errno, "%s", from); return 1; @@ -331,7 +331,7 @@ copy_file (from, to, to_created) error (0, 0, "`%s' is not a regular file", from); return 1; } - if (SAFE_STAT (to, &to_stats) == 0) + if (safe_stat (to, &to_stats) == 0) { if (!S_ISREG (to_stats.st_mode)) { -- cgit v1.2.3-54-g00ecf