summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/mfa.c
diff options
context:
space:
mode:
authorGilles Chehade <gilles@cvs.openbsd.org>2009-03-08 19:11:23 +0000
committerGilles Chehade <gilles@cvs.openbsd.org>2009-03-08 19:11:23 +0000
commit6ed5df817e31046b1bd269b6517373fb1e1c461d (patch)
treee73453d93b50b8cb7b46d79a85de88af14738d4c /usr.sbin/smtpd/mfa.c
parent0d7903fa953304a8193884b221242d4de81f8fdf (diff)
shrink struct message a bit by removing a couple fields which are no longer
used and by moving the rcpt count in struct session where it really belongs while at it, remove some unused splay tree generation in mfa
Diffstat (limited to 'usr.sbin/smtpd/mfa.c')
-rw-r--r--usr.sbin/smtpd/mfa.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/mfa.c b/usr.sbin/smtpd/mfa.c
index 52187013c6a..03081ea9c0d 100644
--- a/usr.sbin/smtpd/mfa.c
+++ b/usr.sbin/smtpd/mfa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mfa.c,v 1.16 2009/03/08 17:54:20 gilles Exp $ */
+/* $OpenBSD: mfa.c,v 1.17 2009/03/08 19:11:22 gilles Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -587,5 +587,3 @@ strip_source_route(char *buf, size_t len)
return 0;
}
-
-SPLAY_GENERATE(msgtree, message, nodes, msg_cmp);