slstatus

My fork of https://tools.suckless.org/slstatus/
git clone https://git.inz.fi/slstatus
Log | Files | Refs | README | LICENSE

commit b2714032e5087e63b5744d3fb8a131e13e1d6f9a
parent 95ceafcae7fbd244c3226bb97db37a7a99877d55
Author: Aaron Marcher <info@nulltime.net>
Date:   Thu, 20 Apr 2017 22:18:24 +0200

username(): get rid of unneeded uid variable

Diffstat:
Mslstatus.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/slstatus.c b/slstatus.c @@ -643,8 +643,7 @@ uptime(void) static char * username(void) { - uid_t uid = geteuid(); - struct passwd *pw = getpwuid(uid); + struct passwd *pw = getpwuid(geteuid()); if (pw == NULL) { warn("Failed to get username");