From 580cee0675f170ae52a27f2cab3eb4e9b5950c92 Mon Sep 17 00:00:00 2001 From: bbraun Date: Wed, 6 Feb 2002 02:00:07 +0000 Subject: Make cron actually build without defining LOGIN_CAP. Reviewed by: jkh --- usr.sbin/cron/cron/popen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/cron') diff --git a/usr.sbin/cron/cron/popen.c b/usr.sbin/cron/cron/popen.c index f22f421..806676d 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; -- cgit v1.1