From 539fa95e0d3123ee7b5499c528ea9ddd3c7eb2bd Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Fri, 19 Mar 2004 23:27:08 +0000 Subject: [PATCH] Oops.. got a bit to aggressive with size optimization and global replace. :-( --- networking/route.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/networking/route.c b/networking/route.c index 9e7a010..5c092f4 100644 --- a/networking/route.c +++ b/networking/route.c @@ -15,7 +15,7 @@ * Foundation; either version 2 of the License, or (at * your option) any later version. * - * $Id: route.c,v 1.25 2004/03/15 08:28:49 andersen Exp $ + * $Id: route.c,v 1.26 2004/03/19 23:27:08 mjn3 Exp $ * * displayroute() code added by Vladimir N. Oleynik * adjustments by Larry Doolittle @@ -282,7 +282,8 @@ static void INET_setroute(int action, char **args) /* Device is special in that it can be the last arg specified * and doesn't requre the dev/device keyword in that case. */ if (!rt.rt_dev && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) { - rt.rt_dev = (char *) args_m1; + /* Don't use args_m1 here since args may have changed! */ + rt.rt_dev = args[-1]; continue; } @@ -407,7 +408,8 @@ static void INET6_setroute(int action, char **args) /* Device is special in that it can be the last arg specified * and doesn't requre the dev/device keyword in that case. */ if (!devname && ((k == KW_IPVx_DEVICE) || (!k && !*++args))) { - devname = args_m1; + /* Don't use args_m1 here since args may have changed! */ + devname = args[-1]; continue; } -- 2.7.4