From 264c0f162c51fa3a676e44d4242f358b9dacdc31 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Fri, 14 Nov 2014 15:40:29 -0600 Subject: [PATCH] core: fix return type of addrconf6_start() It returned a boolean and the caller expected a boolean, but the return type was NMActStageReturn. --- src/devices/nm-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);