summaryrefslogtreecommitdiff
path: root/src/devices/adsl/nm-device-adsl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/adsl/nm-device-adsl.c')
-rw-r--r--src/devices/adsl/nm-device-adsl.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/devices/adsl/nm-device-adsl.c b/src/devices/adsl/nm-device-adsl.c
index ff4e4cd92a..ae42a87b2e 100644
--- a/src/devices/adsl/nm-device-adsl.c
+++ b/src/devices/adsl/nm-device-adsl.c
@@ -235,12 +235,14 @@ error:
static void
link_changed_cb (NMPlatform *platform,
- NMPObjectType obj_type,
+ int obj_type_i,
int ifindex,
NMPlatformLink *info,
- NMPlatformSignalChangeType change_type,
+ int change_type_i,
NMDeviceAdsl *self)
{
+ const NMPlatformSignalChangeType change_type = change_type_i;
+
if (change_type == NM_PLATFORM_SIGNAL_REMOVED) {
NMDeviceAdslPrivate *priv = NM_DEVICE_ADSL_GET_PRIVATE (self);
NMDevice *device = NM_DEVICE (self);
@@ -248,11 +250,11 @@ link_changed_cb (NMPlatform *platform,
/* This only gets called for PPPoE connections and "nas" interfaces */
if (priv->nas_ifindex > 0 && ifindex == priv->nas_ifindex) {
- /* NAS device went away for some reason; kill the connection */
- _LOGD (LOGD_ADSL, "br2684 interface disappeared");
- nm_device_state_changed (device,
- NM_DEVICE_STATE_FAILED,
- NM_DEVICE_STATE_REASON_BR2684_FAILED);
+ /* NAS device went away for some reason; kill the connection */
+ _LOGD (LOGD_ADSL, "br2684 interface disappeared");
+ nm_device_state_changed (device,
+ NM_DEVICE_STATE_FAILED,
+ NM_DEVICE_STATE_REASON_BR2684_FAILED);
}
}
}