diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-07-26 07:08:35 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2019-07-26 07:08:35 +0000 |
commit | 1343343437e3f25e7d16a385c07ca850dc174bad (patch) | |
tree | b43743ff4c1fb0d17b6a8781e42230045f72da8f /usr.sbin | |
parent | 22b237ce91c29dfa51dfc31816bee991f9f18016 (diff) |
add IMSG_REPORT_SMTP_TX_RESET to imsg_to_str
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/smtpd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.c b/usr.sbin/smtpd/smtpd.c index 9cc4fdf77d7..30e2f0da3e7 100644 --- a/usr.sbin/smtpd/smtpd.c +++ b/usr.sbin/smtpd/smtpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.c,v 1.323 2019/06/28 13:32:51 deraadt Exp $ */ +/* $OpenBSD: smtpd.c,v 1.324 2019/07/26 07:08:34 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -2040,6 +2040,7 @@ imsg_to_str(int type) CASE(IMSG_REPORT_SMTP_LINK_DISCONNECT); CASE(IMSG_REPORT_SMTP_LINK_TLS); + CASE(IMSG_REPORT_SMTP_TX_RESET); CASE(IMSG_REPORT_SMTP_TX_BEGIN); CASE(IMSG_REPORT_SMTP_TX_ENVELOPE); CASE(IMSG_REPORT_SMTP_TX_COMMIT); |