diff options
author | 2008-12-07 01:55:41 +0000 | |
---|---|---|
committer | 2008-12-07 01:55:41 +0000 | |
commit | dbdec83946f5c9abf88dd1c1f734f4332b9f0779 (patch) | |
tree | bcfc4052ab49b01db83a583ae6eeda1da0ee590e | |
parent | fix an 11-year-old typo in an if statement; 'null dereference' llvm/clang; ok millert (diff) | |
download | wireguard-openbsd-dbdec83946f5c9abf88dd1c1f734f4332b9f0779.tar.xz wireguard-openbsd-dbdec83946f5c9abf88dd1c1f734f4332b9f0779.zip |
- fix function name in fatal()
-rw-r--r-- | usr.sbin/smtpd/runner.c | 4 |
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; |