diff options
author | 2009-11-01 22:15:27 +0000 | |
---|---|---|
committer | 2009-11-01 22:15:27 +0000 | |
commit | 12a641af18744d2a4104e2695638c0736d27fa43 (patch) | |
tree | 364e0b0c415a7801cb9d6d867d0592c7e1b206b6 | |
parent | Remove bogus #define __HAVE_GENERIC_SOFT_INTERRUPTS. No code change. (diff) | |
download | wireguard-openbsd-12a641af18744d2a4104e2695638c0736d27fa43.tar.xz wireguard-openbsd-12a641af18744d2a4104e2695638c0736d27fa43.zip |
fix a couple log_info()s,
from Tim van der Molen <tbvdm@xs4all.nl>
-rw-r--r-- | usr.sbin/smtpd/queue.c | 4 | ||||
-rw-r--r-- | usr.sbin/smtpd/runner.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/smtpd/queue.c b/usr.sbin/smtpd/queue.c index 53af5771912..89a766e4065 100644 --- a/usr.sbin/smtpd/queue.c +++ b/usr.sbin/smtpd/queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.c,v 1.71 2009/10/12 22:34:37 gilles Exp $ */ +/* $OpenBSD: queue.c,v 1.72 2009/11/01 22:15:27 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -506,7 +506,7 @@ queue_dispatch_runner(int sig, short event, void *p) void queue_shutdown(void) { - log_info("queue handler"); + log_info("queue handler exiting"); _exit(0); } diff --git a/usr.sbin/smtpd/runner.c b/usr.sbin/smtpd/runner.c index 3d8f72234cf..103dbf1e0c6 100644 --- a/usr.sbin/smtpd/runner.c +++ b/usr.sbin/smtpd/runner.c @@ -1,4 +1,4 @@ -/* $OpenBSD: runner.c,v 1.68 2009/10/12 22:34:37 gilles Exp $ */ +/* $OpenBSD: runner.c,v 1.69 2009/11/01 22:15:27 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -465,7 +465,7 @@ runner_dispatch_smtp(int sig, short event, void *p) void runner_shutdown(void) { - log_info("runner handler"); + log_info("runner handler exiting"); _exit(0); } |