about summary refs log tree commit diff
path: root/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2010-02-19 20:46:27 +0000
committerMichael Biebl <biebl@debian.org>2010-02-19 20:46:27 +0000
commitfa06dda22dd91e4b4763292666e8456435bb4e8c (patch)
treef6d28f2442d52f1675934b79056db97d17f0bf18 /debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
parent7628406ee8021a01b3a513ab60ab2912a4a9ef12 (diff)
* Remove patches, all merged upstream
  - debian/patches/04-etc-hosts-rewrite.patch
  - debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
  - debian/patches/03-hostname-fallback.patch

git-svn-id: svn+ssh://svn.debian.org/svn/pkg-utopia/packages/unstable/networkmanager@3520 ceb527fc-18e6-0310-9fe2-813c157c29e7
Diffstat (limited to 'debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch')
-rw-r--r--debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch b/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
deleted file mode 100644
index d27dfe35..00000000
--- a/debian/patches/05-ifupdown-allow-hotplug-autoconnect.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: NetworkManager-0.7.999/system-settings/plugins/ifupdown/plugin.c
-===================================================================
---- NetworkManager-0.7.999.orig/system-settings/plugins/ifupdown/plugin.c	2010-02-08 16:07:48.379559508 +0100
-+++ NetworkManager-0.7.999/system-settings/plugins/ifupdown/plugin.c	2010-02-08 16:08:04.255557965 +0100
-@@ -355,7 +355,7 @@
- 	ifparser_init ();
- 	block = ifparser_getfirst ();
- 	while (block) {
--		if(!strcmp ("auto", block->type))
-+		if(!strcmp ("auto", block->type) || !strcmp ("allow-hotplug", block->type))
- 			g_hash_table_insert (auto_ifaces, block->name, GUINT_TO_POINTER (1));
- 		else if (!strcmp ("iface", block->type) && strcmp ("lo", block->name)) {
- 			NMIfupdownConnection *exported;