summaryrefslogtreecommitdiff
path: root/job.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-07-04 21:54:18 +0000
committerRoland McGrath <roland@redhat.com>1994-07-04 21:54:18 +0000
commit535dcf6a2215c70e3cfd8fe9ee63f0d6360a7fd4 (patch)
tree07cbe3d8082435cd8afdb4ff4cb215a14e0ec4fc /job.c
parent84091971f9cd48fe900be405853b4a006e67ef1b (diff)
downloadgunmake-535dcf6a2215c70e3cfd8fe9ee63f0d6360a7fd4.tar.gz
(search_path): Use safe_stat in place of stat.
Diffstat (limited to 'job.c')
-rw-r--r--job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/job.c b/job.c
index 335c6a1..5be3194 100644
--- a/job.c
+++ b/job.c
@@ -1062,7 +1062,7 @@ search_path (file, path, program)
bcopy (file, program + (p - path) + 1, len);
}
- if (stat (program, &st) == 0
+ if (safe_stat (program, &st) == 0
&& S_ISREG (st.st_mode))
{
if (st.st_uid == geteuid ())