From 7cea88478707a4ed438fbd17ac3ca2371d3328ee Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 17 Aug 2003 16:03:42 +0000 Subject: [PATCH] Avoid unnecessary and sometimes time-consuming hostname lookups. (print_entry): Likewise. This fixes a typo I introduced in who-users.c on 1996-02-23. --- src/pinky.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pinky.c b/src/pinky.c index 827112a..77aad7e 100644 --- a/src/pinky.c +++ b/src/pinky.c @@ -1,5 +1,5 @@ /* GNU's pinky. - Copyright (C) 1992-1997, 1999-2002 Free Software Foundation, Inc. + Copyright (C) 1992-1997, 1999-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -259,7 +259,7 @@ print_entry (const STRUCT_UTMP *utmp_ent) ut_host[sizeof (utmp_ent->ut_host)] = '\0'; /* Look for an X display. */ - display = strrchr (ut_host, ':'); + display = strchr (ut_host, ':'); if (display) *display++ = '\0'; -- 2.7.4