diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2013-10-27 19:12:13 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2013-10-27 19:12:13 +0000 |
commit | d8f76e2fc9bd9c634c217a05ead5b21f3deb760d (patch) | |
tree | ee21e1f727d685ff363c4b8c1c89f292df501c91 /usr.sbin | |
parent | 0d7514b864154c0d188e977f4502c5508b641df7 (diff) |
missing m_end()
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/lka.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/lka.c b/usr.sbin/smtpd/lka.c index 8d9d78af0a8..2ca05e1692a 100644 --- a/usr.sbin/smtpd/lka.c +++ b/usr.sbin/smtpd/lka.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lka.c,v 1.155 2013/10/27 07:56:25 eric Exp $ */ +/* $OpenBSD: lka.c,v 1.156 2013/10/27 19:12:12 eric Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -311,6 +311,7 @@ lka_imsg(struct mproc *p, struct imsg *imsg) m_msg(&m, imsg); m_get_id(&m, &reqid); m_get_string(&m, &tablename); + m_end(&m); table = table_find(tablename, NULL); |