[Pkg-utopia-commits] r819 - packages/unstable/networkmanager/debian/patches

Michael Biebl mbiebl-guest at costa.debian.org
Wed May 10 00:33:30 UTC 2006


Author: mbiebl-guest
Date: 2006-05-10 00:33:27 +0000 (Wed, 10 May 2006)
New Revision: 819

Modified:
   packages/unstable/networkmanager/debian/patches/08-disabled_devices.patch
Log:
Use strstr, because auto can have multiple interfaces, e.g.
auto lo eth0


Modified: packages/unstable/networkmanager/debian/patches/08-disabled_devices.patch
===================================================================
--- packages/unstable/networkmanager/debian/patches/08-disabled_devices.patch	2006-05-09 19:27:53 UTC (rev 818)
+++ packages/unstable/networkmanager/debian/patches/08-disabled_devices.patch	2006-05-10 00:33:27 UTC (rev 819)
@@ -30,7 +30,7 @@
 +	 */
 +	for (curr_b = ifparser_getfirst(); curr_b; curr_b = curr_b->next) {
 +		if (!strcmp (curr_b->type, "auto")
-+		    && !strcmp (curr_b->name, iface))
++		    && strstr (curr_b->name, iface))
 +			blacklist = FALSE;
 +	}
 +




More information about the Pkg-utopia-commits mailing list