diff options
author | brian <brian@cvs.openbsd.org> | 2001-11-23 15:46:11 +0000 |
---|---|---|
committer | brian <brian@cvs.openbsd.org> | 2001-11-23 15:46:11 +0000 |
commit | f2ad4ace25e6c6624a9d8103d3492f1dd264a97c (patch) | |
tree | 1ba4721a1d25059ff6be2ff6c6a3f6fd1c5c9d9f /usr.sbin/ppp | |
parent | 8894b093c749fa9e2d05dc7282a9ac73a1e1162a (diff) |
Removed an unsed variable (oops)
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r-- | usr.sbin/ppp/ppp/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/ppp/route.c b/usr.sbin/ppp/ppp/route.c index b23f5a37004..f003ec605ca 100644 --- a/usr.sbin/ppp/ppp/route.c +++ b/usr.sbin/ppp/ppp/route.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: route.c,v 1.18 2001/11/23 12:38:52 brian Exp $ + * $OpenBSD: route.c,v 1.19 2001/11/23 15:46:10 brian Exp $ */ #include <sys/param.h> @@ -698,7 +698,7 @@ rt_Set(struct bundle *bundle, int cmd, const struct ncprange *dst, const struct ncpaddr *gw, int bang, int quiet) { struct rtmsg rtmes; - int s, nb, wb, width; + int s, nb, wb; char *cp; const char *cmdstr; struct sockaddr_storage sadst, samask, sagw; |