From dce050a45d66948a6243ee08ebaf6dee4494f1c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Klime=C5=A1?= Date: Wed, 27 May 2015 11:20:31 +0200 Subject: [PATCH] device: trivial: fix a copy/paste error in comment --- 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 4c3b67364a..9ce20fe73c 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -585,7 +585,7 @@ nm_device_get_ip_ifindex (NMDevice *self) g_return_val_if_fail (self != NULL, 0); priv = NM_DEVICE_GET_PRIVATE (self); - /* If it's not set, default to iface */ + /* If it's not set, default to ifindex */ return priv->ip_iface ? priv->ip_ifindex : priv->ifindex; }