diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-28 17:24:39 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-01-28 17:24:39 +0000 |
commit | 81c7e10c1914ef9d0f4786cd0b3de286918eaf4e (patch) | |
tree | 50b839c6d89ad5603c286c74b375f6b89b9b2bb1 /usr.sbin/bgpd | |
parent | b04941aec2240d281e34f914e1a7171f2747fa08 (diff) |
don't pfkey_setkey() from here, claudio markus ok
Diffstat (limited to 'usr.sbin/bgpd')
-rw-r--r-- | usr.sbin/bgpd/config.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/bgpd/config.c b/usr.sbin/bgpd/config.c index dd450679179..66634813793 100644 --- a/usr.sbin/bgpd/config.c +++ b/usr.sbin/bgpd/config.c @@ -1,4 +1,4 @@ -/* $OpenBSD: config.c,v 1.23 2004/01/28 11:03:32 markus Exp $ */ +/* $OpenBSD: config.c,v 1.24 2004/01/28 17:24:38 henning Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org> @@ -55,11 +55,6 @@ merge_config(struct bgpd_config *xconf, struct bgpd_config *conf, p->conf.ebgp = (p->conf.remote_as != conf->as); if (!p->conf.id) p->conf.id = get_id(p); - if (p->conf.tcp_sign_key[0] && - pfkey_setkey(&p->conf.local_addr, - &p->conf.remote_addr, - p->conf.tcp_sign_key) == -1) - return (1); } memcpy(xconf, conf, sizeof(struct bgpd_config)); |