diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-07-08 23:42:18 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-07-08 23:42:18 +0000 |
commit | a8befa93d1407a34498390087a06ce0eead13e9e (patch) | |
tree | 7fc58a9b1089a3bd174cd5be6f7af43ed0e6776f /usr.sbin/cron/env.c | |
parent | a2009dcde9f959cb94aece619986d05e773e74e1 (diff) |
minor cosmetic change to reduce diffs
Diffstat (limited to 'usr.sbin/cron/env.c')
-rw-r--r-- | usr.sbin/cron/env.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/cron/env.c b/usr.sbin/cron/env.c index f6cf2ebbcb9..09dc1e82ec5 100644 --- a/usr.sbin/cron/env.c +++ b/usr.sbin/cron/env.c @@ -1,4 +1,4 @@ -/* $OpenBSD: env.c,v 1.10 2002/07/08 18:11:02 millert Exp $ */ +/* $OpenBSD: env.c,v 1.11 2002/07/08 23:42:17 millert Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * All rights reserved */ @@ -21,7 +21,7 @@ */ #if !defined(lint) && !defined(LINT) -static char const rcsid[] = "$OpenBSD: env.c,v 1.10 2002/07/08 18:11:02 millert Exp $"; +static char const rcsid[] = "$OpenBSD: env.c,v 1.11 2002/07/08 23:42:17 millert Exp $"; #endif #include "cron.h" @@ -50,7 +50,7 @@ env_copy(char **envp) { char **p; for (count = 0; envp[count] != NULL; count++) - NULL; + continue; p = (char **) malloc((count+1) * sizeof(char *)); /* 1 for the NULL */ if (p != NULL) { for (i = 0; i < count; i++) |