projects
/
mmh
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c1b8e5
)
Sanitised some dodgy homedir finding code, but it still might not make
author
Joel Reicher
<jjr@panacea.null.org>
Fri, 14 Apr 2006 08:21:35 +0000
(08:21 +0000)
committer
Joel Reicher
<jjr@panacea.null.org>
Fri, 14 Apr 2006 08:21:35 +0000
(08:21 +0000)
sense.
uip/msgchk.c
patch
|
blob
|
history
diff --git
a/uip/msgchk.c
b/uip/msgchk.c
index
69999f6
..
872dc2e
100644
(file)
--- a/
uip/msgchk.c
+++ b/
uip/msgchk.c
@@
-307,13
+307,12
@@
main (int argc, char **argv)
if (vecp == 0) {
char *home;
- home = (uid = geteuid()) ? home = getenv ("HOME") : NULL;
- if (home == NULL) {
+ /* Not sure this check makes sense... */
+ if (!geteuid() || NULL == (home = getenv("HOME"))) {
pw = getpwnam (user);
if (pw == NULL)
adios (NULL, "unable to get information about user");
- if (home == NULL)
- home = pw->pw_dir;
+ home = pw->pw_dir;
}
status = checkmail (user, home, datesw, notifysw, 1);
} else {