diff options
Diffstat (limited to 'usr.sbin/cron/misc.c')
-rw-r--r-- | usr.sbin/cron/misc.c | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/usr.sbin/cron/misc.c b/usr.sbin/cron/misc.c index 200ae4e6ca1..9dd4ad08f3e 100644 --- a/usr.sbin/cron/misc.c +++ b/usr.sbin/cron/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.67 2015/11/04 14:47:02 millert Exp $ */ +/* $OpenBSD: misc.c,v 1.68 2015/11/04 20:28:17 millert Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") @@ -17,7 +17,20 @@ * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "cron.h" +#include <sys/types.h> +#include <sys/wait.h> + +#include <bitstring.h> /* for structs.h */ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <syslog.h> +#include <time.h> /* for structs.h */ + +#include "macros.h" +#include "structs.h" +#include "funcs.h" +#include "globals.h" static int syslog_open = FALSE; @@ -122,8 +135,6 @@ log_it(const char *username, pid_t xpid, const char *event, const char *detail) break; syslog(*info ? LOG_INFO : LOG_WARNING, "(%s) %s (%s)", username, event, detail); - - } void |