Author: bz
Date: Sat Aug 16 13:47:04 2014
New Revision: 270050
URL: http://svnweb.freebsd.org/changeset/base/270050

Log:
  MFC r264539:
  
   When switching variables to flags in r243185 a few cases were missed.
   After r263152 (in head) this leaves unused variables if route(8) is
   compiled without INET support.
   Switch the remaining variable accesses to flags and remove now obsolete
   variables.
  
   Reviewed by: glebius

Modified:
  stable/10/sbin/route/route.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sbin/route/route.c
==============================================================================
--- stable/10/sbin/route/route.c        Sat Aug 16 13:25:49 2014        
(r270049)
+++ stable/10/sbin/route/route.c        Sat Aug 16 13:47:04 2014        
(r270050)
@@ -81,7 +81,7 @@ static struct keytab {
 static struct sockaddr_storage so[RTAX_MAX];
 static int     pid, rtm_addrs;
 static int     s;
-static int     forcehost, forcenet, nflag, af, qflag, tflag;
+static int     nflag, af, qflag, tflag;
 static int     verbose, aflen;
 static int     locking, lockrest, debugonly;
 static struct rt_metrics rt_metrics;
@@ -1235,7 +1235,7 @@ getaddr(int idx, char *str, struct hoste
                 */
                switch (idx) {
                case RTAX_DST:
-                       forcenet++;
+                       nrflags |= F_FORCENET;
                        getaddr(RTAX_NETMASK, str, 0, nrflags);
                        break;
                }
@@ -1275,7 +1275,7 @@ getaddr(int idx, char *str, struct hoste
                if (!atalk_aton(str, &sat->sat_addr))
                        errx(EX_NOHOST, "bad address: %s", str);
                rtm_addrs |= RTA_NETMASK;
-               return(forcehost || sat->sat_addr.s_node != 0);
+               return(nrflags & F_FORCEHOST || sat->sat_addr.s_node != 0);
        }
        case AF_LINK:
                link_addr(str, (struct sockaddr_dl *)(void *)sa);
@@ -1308,10 +1308,10 @@ getaddr(int idx, char *str, struct hoste
                }
                *q = '/';
        }
-       if ((idx != RTAX_DST || forcenet == 0) &&
+       if ((idx != RTAX_DST || (nrflags & F_FORCENET) == 0) &&
            inet_aton(str, &sin->sin_addr)) {
                val = sin->sin_addr.s_addr;
-               if (idx != RTAX_DST || forcehost ||
+               if (idx != RTAX_DST || nrflags & F_FORCEHOST ||
                    inet_lnaof(sin->sin_addr) != INADDR_ANY)
                        return (1);
                else {
@@ -1319,7 +1319,7 @@ getaddr(int idx, char *str, struct hoste
                        goto netdone;
                }
        }
-       if (idx == RTAX_DST && forcehost == 0 &&
+       if (idx == RTAX_DST && (nrflags & F_FORCEHOST) == 0 &&
            ((val = inet_network(str)) != INADDR_NONE ||
            ((np = getnetbyname(str)) != NULL && (val = np->n_net) != 0))) {
 netdone:
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to