diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-05-20 11:58:07 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2009-05-20 11:58:07 +0000 |
commit | 4ca8ef671d2dcbf4a29531ed0b75fb9144a8be32 (patch) | |
tree | 02d425f1179fc5c727463a2e63ee0b82d7233f7a /usr.sbin | |
parent | 3b592c4c617894a0a9c77dccf7a0ad70148fab8b (diff) |
fix a pasto causing "smtpctl resume mta" to try to resume mda
spotted and diff by giovanni <qgiovanni@gmail.com>
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/smtpctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/smtpctl.c b/usr.sbin/smtpd/smtpctl.c index ed4bcb3cd86..650792332df 100644 --- a/usr.sbin/smtpd/smtpctl.c +++ b/usr.sbin/smtpd/smtpctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpctl.c,v 1.25 2009/05/18 20:23:35 jacekm Exp $ */ +/* $OpenBSD: smtpctl.c,v 1.26 2009/05/20 11:58:06 gilles Exp $ */ /* * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -169,7 +169,7 @@ connected: imsg_compose(ibuf, IMSG_MDA_RESUME, 0, 0, -1, NULL, 0); break; case RESUME_MTA: - imsg_compose(ibuf, IMSG_MDA_RESUME, 0, 0, -1, NULL, 0); + imsg_compose(ibuf, IMSG_MTA_RESUME, 0, 0, -1, NULL, 0); break; case RESUME_SMTP: imsg_compose(ibuf, IMSG_SMTP_RESUME, 0, 0, -1, NULL, 0); |