From 8cffaf3bf56b52458b5db8b0dbd9c27d6ddb17bc Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 18 Jun 2015 22:25:23 +0200 Subject: [PATCH] vxlan: o.fd.NM.Device.Proxy is a boolean (cherry picked from commit 203e48033ba34a175be96da08f54b6d06916820f) --- src/devices/nm-device-vxlan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/nm-device-vxlan.c b/src/devices/nm-device-vxlan.c index 7811934d2a..186e00de00 100644 --- a/src/devices/nm-device-vxlan.c +++ b/src/devices/nm-device-vxlan.c @@ -199,7 +199,7 @@ get_property (GObject *object, guint prop_id, g_value_set_uint (value, priv->props.src_port_max); break; case PROP_PROXY: - g_value_set_uint (value, priv->props.proxy); + g_value_set_boolean (value, priv->props.proxy); break; case PROP_RSC: g_value_set_boolean (value, priv->props.rsc);