]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(print_entry): Use safe_stat instead of SAFE_STAT.
authorJim Meyering <jim@meyering.net>
Tue, 20 Dec 1994 04:50:25 +0000 (04:50 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 20 Dec 1994 04:50:25 +0000 (04:50 +0000)
src/who.c

index 7cbe51807b2002abec279bb90d49695d9b685604..1d768fc792837638c961fd3c3774e9de6f1b02b3 100644 (file)
--- 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;