From: florian Date: Tue, 30 May 2017 22:04:46 +0000 (+0000) Subject: Oops, this was RTP_BGP during development to be able to easier spot X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=52f1ba97a2f8764259111c6101d3a0ee8deb2473;p=openbsd Oops, this was RTP_BGP during development to be able to easier spot the configured route. Should be RTP_DEFAULT. --- diff --git a/usr.sbin/slaacd/slaacd.c b/usr.sbin/slaacd/slaacd.c index 5d0c0933288..61df0d6f50a 100644 --- a/usr.sbin/slaacd/slaacd.c +++ b/usr.sbin/slaacd/slaacd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: slaacd.c,v 1.22 2017/05/30 18:18:08 deraadt Exp $ */ +/* $OpenBSD: slaacd.c,v 1.23 2017/05/30 22:04:46 florian Exp $ */ /* * Copyright (c) 2017 Florian Obser @@ -704,7 +704,7 @@ configure_gateway(struct imsg_configure_dfr *dfr, uint8_t rtm_type) rtm.rtm_tableid = 0; /* XXX imsg->rdomain; */ rtm.rtm_index = dfr->if_index; rtm.rtm_seq = ++rtm_seq; - rtm.rtm_priority = RTP_BGP; + rtm.rtm_priority = RTP_DEFAULT; rtm.rtm_addrs = RTA_DST | RTA_GATEWAY | RTA_NETMASK; rtm.rtm_flags = RTF_UP | RTF_GATEWAY | RTF_STATIC;