svn commit: r234264 - stable/8/usr.sbin/ppp

Eitan Adler eadler at FreeBSD.org
Sat Apr 14 02:11:08 UTC 2012


Author: eadler
Date: Sat Apr 14 02:11:08 2012
New Revision: 234264
URL: http://svn.freebsd.org/changeset/base/234264

Log:
  MFC r230347:
  	Fix warning when compiling with gcc46:
  		error: variable 'addrs' set but not used
  
  Approved by:	cperciva (implicit)

Modified:
  stable/8/usr.sbin/ppp/iface.c
Directory Properties:
  stable/8/usr.sbin/ppp/   (props changed)

Modified: stable/8/usr.sbin/ppp/iface.c
==============================================================================
--- stable/8/usr.sbin/ppp/iface.c	Sat Apr 14 02:10:45 2012	(r234263)
+++ stable/8/usr.sbin/ppp/iface.c	Sat Apr 14 02:11:08 2012	(r234264)
@@ -471,12 +471,11 @@ iface_Descr(struct cmdargs const *arg)
 void
 iface_Clear(struct iface *iface, struct ncp *ncp, int family, int how)
 {
-  int addrs, af, inskip, in6skip, s4 = -1, s6 = -1, *s;
+  int af, inskip, in6skip, s4 = -1, s6 = -1, *s;
   unsigned n;
 
   if (iface->addrs) {
     inskip = in6skip = how == IFACE_CLEAR_ALL ? 0 : 1;
-    addrs = 0;
 
     for (n = 0; n < iface->addrs; n++) {
       af = ncprange_family(&iface->addr[n].ifa);


More information about the svn-src-stable-8 mailing list