]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(print_uptime): Use STREQ in place of !strcmp.
authorJim Meyering <jim@meyering.net>
Mon, 15 Jul 2002 20:42:43 +0000 (20:42 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 15 Jul 2002 20:42:43 +0000 (20:42 +0000)
src/uptime.c

index ce39fead055f9d09246fcd69b751cab461f2b9c6..b3351ef354aa956833d012cf2b06753eadf48716 100644 (file)
@@ -98,7 +98,7 @@ print_uptime (int n, const STRUCT_UTMP *this)
 # if HAVE_PROC_UPTIME
       if (uptime == 0)
 # endif /* HAVE_PROC_UPTIME */
-       if (!strcmp (this->ut_line, BOOT_MSG))
+       if (STREQ (this->ut_line, BOOT_MSG))
          boot_time = UT_TIME_MEMBER (this);
 #endif /* BOOT_MSG */
       ++this;