aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1996-08-13 09:19:45 +0000
committerPeter Wemm <peter@FreeBSD.org>1996-08-13 09:19:45 +0000
commit2db86e5b74cbc5ee1af135878f702eb72b259df3 (patch)
treefa02eee6ff9e8adc3a70972eb612d6ab986118a6
parentb49090e69185a38ae8e9ab4723cb95a14ff944bd (diff)
downloadsrc-2db86e5b74cbc5ee1af135878f702eb72b259df3.tar.gz
src-2db86e5b74cbc5ee1af135878f702eb72b259df3.zip
Add RTF_STATIC to default route's flags in the hope that routed will no
longer remove it while it is running.
Notes
Notes: svn path=/head/; revision=17571
-rw-r--r--usr.sbin/ppp/route.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/route.c b/usr.sbin/ppp/route.c
index b13053370aa3..23ad578f1aec 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 <sys/types.h>
@@ -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;