diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-12 10:24:28 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2015-12-12 10:24:28 +0000 |
commit | a2556d3e41f9ba6635d3b4fdbc5a4abc88afed8d (patch) | |
tree | b60a30d4fe6642499d9a8a56339351b55a542dd4 /usr.sbin | |
parent | 0eab686376ac4df3f9fd04a5bd2da55c7f2338d8 (diff) |
declare and init filter wait queues (unused yet)
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/smtp_session.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/smtpd/smtp_session.c b/usr.sbin/smtpd/smtp_session.c index 9e9eaf7f95d..d2ee0a6723c 100644 --- a/usr.sbin/smtpd/smtp_session.c +++ b/usr.sbin/smtpd/smtp_session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtp_session.c,v 1.246 2015/12/12 10:22:39 gilles Exp $ */ +/* $OpenBSD: smtp_session.c,v 1.247 2015/12/12 10:24:27 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -218,8 +218,8 @@ static struct tree wait_lka_ptr; static struct tree wait_lka_helo; static struct tree wait_lka_mail; static struct tree wait_lka_rcpt; -static struct tree wait_lka_filter; -static struct tree wait_lka_filter_data; +static struct tree wait_filter; +static struct tree wait_filter_data; static struct tree wait_mfa_data; static struct tree wait_parent_auth; static struct tree wait_queue_msg; @@ -442,8 +442,8 @@ smtp_session_init(void) tree_init(&wait_lka_helo); tree_init(&wait_lka_mail); tree_init(&wait_lka_rcpt); - tree_init(&wait_lka_filter); - tree_init(&wait_lka_filter_data); + tree_init(&wait_filter); + tree_init(&wait_filter_data); tree_init(&wait_mfa_data); tree_init(&wait_parent_auth); tree_init(&wait_queue_msg); |