From 6d59e126b55547df036ad0cdb8b66793e88b48f2 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 20 Dec 1994 04:50:25 +0000 Subject: (print_entry): Use safe_stat instead of SAFE_STAT. --- src/who.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/who.c') diff --git a/src/who.c b/src/who.c index 7cbe51807..1d768fc79 100644 --- a/src/who.c +++ b/src/who.c @@ -217,7 +217,7 @@ print_entry (this) line[DEV_DIR_LEN + sizeof (this->ut_line)] = '\0'; } - if (SAFE_STAT (line, &stats) == 0) + if (safe_stat (line, &stats) == 0) { mesg = (stats.st_mode & S_IWGRP) ? '+' : '-'; last_change = stats.st_atime; -- cgit v1.2.3-54-g00ecf