diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-02-15 10:32:24 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-02-15 10:32:24 +0000 |
commit | 0f970a41753689486aa101b9be3eb12f3421f1a1 (patch) | |
tree | 3f86f4f5e8099e9276f0adf4f2be209dea13547e /usr.sbin/smtpd/smtp.c | |
parent | 877d1aa70b2c58e7d05e67975931b87ad6006172 (diff) |
New config.c that allows for process cloning. Done by pyr@ for
relayd at n2k9, and adapted to smtpd; ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtp.c')
-rw-r--r-- | usr.sbin/smtpd/smtp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtp.c b/usr.sbin/smtpd/smtp.c index ba45283d835..80aa13864b1 100644 --- a/usr.sbin/smtpd/smtp.c +++ b/usr.sbin/smtpd/smtp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: smtp.c,v 1.22 2009/01/30 21:40:21 gilles Exp $ */ +/* $OpenBSD: smtp.c,v 1.23 2009/02/15 10:32:23 jacekm Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org> @@ -626,6 +626,7 @@ smtp(struct smtpd *env) signal(SIGPIPE, SIG_IGN); signal(SIGHUP, SIG_IGN); + config_pipes(env, peers, 5); config_peers(env, peers, 5); smtp_setup_events(env); |