diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2008-12-07 01:55:42 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2008-12-07 01:55:42 +0000 |
commit | 89ae31d1744f7a0a6124e4185e4f6859d09ef7ef (patch) | |
tree | e3fa7e7095097deecebd84ca9f62a7c078d87098 | |
parent | e84b1c5d2492c294dc9f456551614734d0a3861b (diff) |
- 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; |