From 72e76de98b5f5e79b11ef4c422ffdbbfe10d2f68 Mon Sep 17 00:00:00 2001 From: peter Date: Tue, 13 Aug 1996 09:19:45 +0000 Subject: Add RTF_STATIC to default route's flags in the hope that routed will no longer remove it while it is running. --- usr.sbin/ppp/route.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/ppp/route.c b/usr.sbin/ppp/route.c index b130533..23ad578 100644 --- a/usr.sbin/ppp/route.c +++ b/usr.sbin/ppp/route.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $Id: route.c,v 1.5 1996/01/11 17:48:56 phk Exp $ + * $Id: route.c,v 1.6 1996/05/11 20:48:42 phk Exp $ * */ #include @@ -75,7 +75,7 @@ struct in_addr mask; if (cmd == RTM_ADD) rtmes.m_rtm.rtm_addrs |= RTA_GATEWAY; rtmes.m_rtm.rtm_seq = ++seqno; rtmes.m_rtm.rtm_pid = getpid(); - rtmes.m_rtm.rtm_flags = RTF_UP | RTF_GATEWAY; + rtmes.m_rtm.rtm_flags = RTF_UP | RTF_GATEWAY | RTF_STATIC; bzero(&rtdata, sizeof(rtdata)); rtdata.sin_len = 16; -- cgit v1.1