diff options
| author | 2018-05-14 15:23:05 +0000 | |
|---|---|---|
| committer | 2018-05-14 15:23:05 +0000 | |
| commit | ef15259e1ab8c01faa1ca1fa308a6f92fdb3f80a (patch) | |
| tree | 3f67798c6021b74d5432fa04e01d943c6dcc563e /usr.sbin/smtpd/queue.c | |
| parent | When walking the IPv6 header chain in IPsec output, check that the (diff) | |
| download | wireguard-openbsd-ef15259e1ab8c01faa1ca1fa308a6f92fdb3f80a.tar.xz wireguard-openbsd-ef15259e1ab8c01faa1ca1fa308a6f92fdb3f80a.zip | |
kill corrupt / uncorrupt queue mechanism as it has never been usable and it
will be made irrelevant when the new config comes up soon
ok eric@
Diffstat (limited to 'usr.sbin/smtpd/queue.c')
| -rw-r--r-- | usr.sbin/smtpd/queue.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/usr.sbin/smtpd/queue.c b/usr.sbin/smtpd/queue.c index 7e9bd0ae218..60959aafa57 100644 --- a/usr.sbin/smtpd/queue.c +++ b/usr.sbin/smtpd/queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.c,v 1.184 2017/11/21 12:20:34 eric Exp $ */ +/* $OpenBSD: queue.c,v 1.185 2018/05/14 15:23:05 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -524,15 +524,6 @@ queue_imsg(struct mproc *p, struct imsg *imsg) tv.tv_usec = 10; evtimer_add(&wi->ev, &tv); return; - - case IMSG_CTL_UNCORRUPT_MSGID: - m_msg(&m, imsg); - m_get_msgid(&m, &msgid); - m_end(&m); - ret = queue_message_uncorrupt(msgid); - m_compose(p_control, imsg->hdr.type, imsg->hdr.peerid, - 0, -1, &ret, sizeof ret); - return; } errx(1, "queue_imsg: unexpected %s imsg", imsg_to_str(imsg->hdr.type)); |
