diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2012-07-29 13:56:25 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2012-07-29 13:56:25 +0000 |
commit | e2ebd65cbfabf7992733a645ce8219e0e092ee71 (patch) | |
tree | 44f6181e6dff79a22dccd43c3914958cfa4d47d2 /usr.sbin/smtpd/mta.c | |
parent | d60a9f0210fbf050ede27cd1f6578002ff69b173 (diff) |
remove the session tree from the global env and move it to mta_session.c,
along with mta_relay and mta_session definition.
ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/mta.c')
-rw-r--r-- | usr.sbin/smtpd/mta.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/smtpd/mta.c b/usr.sbin/smtpd/mta.c index f1fcd4023c2..500c77a5255 100644 --- a/usr.sbin/smtpd/mta.c +++ b/usr.sbin/smtpd/mta.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mta.c,v 1.132 2012/05/11 12:12:02 eric Exp $ */ +/* $OpenBSD: mta.c,v 1.133 2012/07/29 13:56:24 eric Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -194,8 +194,6 @@ mta(void) config_pipes(peers, nitems(peers)); config_peers(peers, nitems(peers)); - SPLAY_INIT(&env->mta_sessions); - if (event_dispatch() < 0) fatal("event_dispatch"); mta_shutdown(); |