slackbuilds_ponce/network/NetworkManager/patches/libnm-glib-actually-define-the-ip-interface-property.patch
Robby Workman 4851069dfd network/NetworkManager: Included several patches from upstream
This commit adds quite a few patches from the upstream
NM_0_8 git branch.  Most of them are bugfix-only patches,
but the two dealing with /etc/hosts policy are changes in
behavior.  This *should* be an improvement for us, but if
you notice any ill effects, please advise.

Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
2011-01-10 12:44:27 -06:00

38 lines
1.1 KiB
Diff

From d1a92a4d4da80b4cdc53164a42cbe29c03b1c8c1 Mon Sep 17 00:00:00 2001
From: Dan Williams <dcbw@redhat.com>
Date: Tue, 7 Dec 2010 14:12:55 -0600
Subject: [PATCH] libnm-glib: actually define the "ip-interface" property
Looks like it got left out of 6ab5a9597a26235c9839df346fc3ce95f35a240f
---
libnm-glib/nm-device.c | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/libnm-glib/nm-device.c b/libnm-glib/nm-device.c
index ea2a91d..b8998f7 100644
--- a/libnm-glib/nm-device.c
+++ b/libnm-glib/nm-device.c
@@ -477,6 +477,20 @@ nm_device_class_init (NMDeviceClass *device_class)
G_PARAM_READABLE));
/**
+ * NMDevice:ip-interface:
+ *
+ * The IP interface of the device which should be used for all IP-related
+ * operations like addressing and routing.
+ **/
+ g_object_class_install_property
+ (object_class, PROP_IP_INTERFACE,
+ g_param_spec_string (NM_DEVICE_IP_INTERFACE,
+ "IP Interface",
+ "IP Interface name",
+ NULL,
+ G_PARAM_READABLE));
+
+ /**
* NMDevice:udi:
*
* The Unique Device Identifier of the device.
--
1.7.3.4