diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-05-02 08:42:55 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-02 08:42:55 +0200 |
commit | 709549b4bd9fee0e0054c0dfa75fff9ac18f2862 (patch) | |
tree | ec5bde8cc474fae77be855bdcfb84c791ee2b386 /components/user.c | |
parent | e43c3a16f06ccd0c35814e8b47a6f30e81f9c981 (diff) |
user: Only declare variables in the beginning
Diffstat (limited to 'components/user.c')
-rw-r--r-- | components/user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/user.c b/components/user.c index b335dc3..8ab6db9 100644 --- a/components/user.c +++ b/components/user.c @@ -17,9 +17,9 @@ gid(void) const char * username(void) { - struct passwd *pw = getpwuid(geteuid()); + struct passwd *pw; - if (pw == NULL) { + if (!(pw = getpwuid(geteuid()))) { fprintf(stderr, "getpwuid '%d': %s\n", geteuid(), strerror(errno)); return NULL; } |