From: procter Date: Sat, 22 Sep 2018 02:18:19 +0000 (+0000) Subject: fix uid -> username lookup X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3f11dd66be9af97cf392b1d378cd4f8b5b62bb5e;p=openbsd fix uid -> username lookup ok deraadt@ --- diff --git a/usr.bin/top/username.c b/usr.bin/top/username.c index c5c402c16f5..326ce593ee9 100644 --- a/usr.bin/top/username.c +++ b/usr.bin/top/username.c @@ -1,4 +1,4 @@ -/* $OpenBSD: username.c,v 1.19 2018/09/16 02:44:06 millert Exp $ */ +/* $OpenBSD: username.c,v 1.20 2018/09/22 02:18:19 procter Exp $ */ /* * Top users/processes display for Unix @@ -51,6 +51,8 @@ uid_t userid(const char *username) { uid_t uid; - - return uid_from_user(username, &uid); + if (uid_from_user(username, &uid) == -1) { + uid = (uid_t)-1; + } + return uid; }