From 0a31366682116d3be8a2578493ff2074193a04c4 Mon Sep 17 00:00:00 2001 From: David Whedon Date: Fri, 2 Feb 2001 05:40:20 +0000 Subject: [PATCH] route now in /sbin r466 --- debian/changelog | 6 ++++++ netcfg-static.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c86fbb90..baabbaf2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +netcfg (0.08) unstable; urgency=low + + * route is now in /sbin + + -- David Whedon Wed, 31 Jan 2001 09:58:18 -0800 + netcfg (0.07) unstable; urgency=low * if a gateway is specified, netcfg-static needs to add a default route diff --git a/netcfg-static.c b/netcfg-static.c index 5a6416da..94e13cfc 100644 --- a/netcfg-static.c +++ b/netcfg-static.c @@ -155,7 +155,7 @@ netcfg_activate_static () { ptr = buf; ptr += - snprintf (buf, sizeof (buf), "/usr/bin/route add default gateway %s", + snprintf (buf, sizeof (buf), "/sbin/route add default gateway %s", num2dot (gateway)); rv |= execlog (buf); }