svn commit: trunk/busybox/networking

vda at busybox.net vda at busybox.net
Sun Jan 7 22:23:39 UTC 2007


Author: vda
Date: 2007-01-07 14:23:38 -0800 (Sun, 07 Jan 2007)
New Revision: 17199

Log:
Previous "fix" wasn't good enough.
Now *this* is the correct fix (I think).


Modified:
   trunk/busybox/networking/arp.c


Changeset:
Modified: trunk/busybox/networking/arp.c
===================================================================
--- trunk/busybox/networking/arp.c	2007-01-07 22:20:33 UTC (rev 17198)
+++ trunk/busybox/networking/arp.c	2007-01-07 22:23:38 UTC (rev 17199)
@@ -408,7 +408,7 @@
 				continue;
 
 			/* if the user specified device differs, skip it */
-			if (device[0])
+			if (device[0] && strcmp(dev, device) != 0)
 				continue;
 
 			shown++;




More information about the busybox-cvs mailing list