summaryrefslogtreecommitdiff
path: root/usr.sbin/cron/entry.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-03-04 21:47:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-03-04 21:47:09 +0000
commit1b18fc645ec423ba6b3f935ba6a09363353dcc85 (patch)
tree1af4f59bf1a4fe018002eeecc3456e3fadf1185d /usr.sbin/cron/entry.c
parent74f9bd907e31715469016354cd9031d85f916180 (diff)
Deref the correct passwd pointer in a Debug statement.
Diffstat (limited to 'usr.sbin/cron/entry.c')
-rw-r--r--usr.sbin/cron/entry.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/entry.c b/usr.sbin/cron/entry.c
index 6968f47d393..8db10b45cd6 100644
--- a/usr.sbin/cron/entry.c
+++ b/usr.sbin/cron/entry.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: entry.c,v 1.17 2003/02/27 15:02:44 millert Exp $ */
+/* $OpenBSD: entry.c,v 1.18 2003/03/04 21:47:08 millert Exp $ */
/*
* Copyright 1988,1990,1993,1994 by Paul Vixie
@@ -23,7 +23,7 @@
*/
#if !defined(lint) && !defined(LINT)
-static char const rcsid[] = "$OpenBSD: entry.c,v 1.17 2003/02/27 15:02:44 millert Exp $";
+static char const rcsid[] = "$OpenBSD: entry.c,v 1.18 2003/03/04 21:47:08 millert Exp $";
#endif
/* vix 26jan87 [RCS'd; rest of log is in RCS file]
@@ -255,7 +255,7 @@ load_entry(FILE *file, void (*error_func)(), struct passwd *pw, char **envp) {
goto eof;
}
Debug(DPARS, ("load_entry()...uid %ld, gid %ld\n",
- (long)e->pwd->pw_uid, (long)e->pwd->pw_gid))
+ (long)pw->pw_uid, (long)pw->pw_gid))
} else if (ch == '*') {
ecode = e_cmd;
goto eof;