all repos — slstatus @ b2714032e5087e63b5744d3fb8a131e13e1d6f9a

my build of slstatus (tools.suckless.org/slstatus/)

username(): get rid of unneeded uid variable
Aaron Marcher info@nulltime.net
Thu, 20 Apr 2017 22:18:24 +0200
commit

b2714032e5087e63b5744d3fb8a131e13e1d6f9a

parent

95ceafcae7fbd244c3226bb97db37a7a99877d55

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M slstatus.cslstatus.c

@@ -643,8 +643,7 @@

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");