]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* who.c (print_entry): Use SAFE_STAT.
authorJim Meyering <jim@meyering.net>
Fri, 22 Jul 1994 17:19:23 +0000 (17:19 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 22 Jul 1994 17:19:23 +0000 (17:19 +0000)
src/who.c

index d28d3733ab9595bdde7e222a3b667b3a1c74eec2..5ded20f753cc080e8d02a6df09ad66f33edb0861 100644 (file)
--- a/src/who.c
+++ b/src/who.c
@@ -62,6 +62,7 @@
 
 #include "system.h"
 #include "version.h"
+#include "safe-stat.h"
 
 #if !defined (UTMP_FILE) && defined (_PATH_UTMP)       /* 4.4BSD.  */
 #define UTMP_FILE _PATH_UTMP
@@ -341,7 +342,7 @@ print_entry (this)
       line[DEV_DIR_LEN + sizeof (this->ut_line)] = '\0';
     }
 
-  if (stat (line, &stats) == 0)
+  if (SAFE_STAT (line, &stats) == 0)
     {
       mesg = (stats.st_mode & S_IWGRP) ? '+' : '-';
       last_change = stats.st_atime;