summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgilles <gilles@openbsd.org>2008-12-07 01:55:41 +0000
committergilles <gilles@openbsd.org>2008-12-07 01:55:41 +0000
commitdbdec83946f5c9abf88dd1c1f734f4332b9f0779 (patch)
treebcfc4052ab49b01db83a583ae6eeda1da0ee590e
parentfix an 11-year-old typo in an if statement; 'null dereference' llvm/clang; ok millert (diff)
downloadwireguard-openbsd-dbdec83946f5c9abf88dd1c1f734f4332b9f0779.tar.xz
wireguard-openbsd-dbdec83946f5c9abf88dd1c1f734f4332b9f0779.zip
- fix function name in fatal()
-rw-r--r--usr.sbin/smtpd/runner.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/runner.c b/usr.sbin/smtpd/runner.c
index a6e901282a7..5374dab1aae 100644
--- a/usr.sbin/smtpd/runner.c
+++ b/usr.sbin/smtpd/runner.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: runner.c,v 1.2 2008/12/05 19:09:59 gilles Exp $ */
+/* $OpenBSD: runner.c,v 1.3 2008/12/07 01:55:41 gilles Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -718,7 +718,7 @@ runner_batch_dispatch(struct smtpd *env, struct batch *batchp, time_t curtime)
struct message *messagep;
if ((batchp->type & (T_MDA_BATCH|T_MTA_BATCH)) == 0)
- fatal("batch_send: unknown batch type");
+ fatal("runner_batch_dispatch: unknown batch type");
if (batchp->type & T_MDA_BATCH)
proctype = PROC_MDA;