summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2014-11-14 15:40:29 -0600
committerDan Williams <dcbw@redhat.com>2014-11-14 16:15:35 -0600
commit264c0f162c51fa3a676e44d4242f358b9dacdc31 (patch)
tree6199ca647c9407561fa4a09431c3a049e9b17b50
parent16a9fc49ddd59ded7e03cea2deb3d33bde788000 (diff)
downloadNetworkManager-264c0f162c51fa3a676e44d4242f358b9dacdc31.tar.gz
core: fix return type of addrconf6_start()
It returned a boolean and the caller expected a boolean, but the return type was NMActStageReturn.
-rw-r--r--src/devices/nm-device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c
index eb37b468d6..43c36b8e5d 100644
--- a/src/devices/nm-device.c
+++ b/src/devices/nm-device.c
@@ -4047,7 +4047,7 @@ addrconf6_start_with_link_ready (NMDevice *self)
return TRUE;
}
-static NMActStageReturn
+static gboolean
addrconf6_start (NMDevice *self, NMSettingIP6ConfigPrivacy use_tempaddr)
{
NMDevicePrivate *priv = NM_DEVICE_GET_PRIVATE (self);