aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/cron/cron/popen.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/cron/cron/popen.c')
-rw-r--r--usr.sbin/cron/cron/popen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/cron/cron/popen.c b/usr.sbin/cron/cron/popen.c
index f22f421a2519..806676da4429 100644
--- a/usr.sbin/cron/cron/popen.c
+++ b/usr.sbin/cron/cron/popen.c
@@ -150,12 +150,12 @@ cron_popen(program, type, e)
(void)open(_PATH_DEVNULL, O_RDWR);
(void)close(pdes[1]);
}
-# if defined(LOGIN_CAP)
if (e != NULL) {
/* Set user's entire context, but skip the environment
* as cron provides a separate interface for this
*/
usernm = env_get("LOGNAME", e->envp);
+# if defined(LOGIN_CAP)
if ((pwd = getpwnam(usernm)) == NULL)
pwd = getpwuid(e->uid);
lc = NULL;