From: Jim Meyering Date: Tue, 20 Dec 1994 04:50:25 +0000 (+0000) Subject: (print_entry): Use safe_stat instead of SAFE_STAT. X-Git-Tag: textutils-1_12_1~378 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6d59e126b55547df036ad0cdb8b66793e88b48f2;p=thirdparty%2Fcoreutils.git (print_entry): Use safe_stat instead of SAFE_STAT. --- diff --git a/src/who.c b/src/who.c index 7cbe51807b..1d768fc792 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;