From b259adf62da5e13112d4abe845c2a2a9a6273095 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Wed, 14 Nov 2018 16:36:33 +0100 Subject: [PATCH 1/3] device: fix wrong connection default property Fixes: 96cabbcbb8f484f74fe69305b425b5109608e9d7 (cherry picked from commit 218d7687a06e81cbb85849f070d133814a71190e) (cherry picked from commit 70cbda40cb8e11266db7b89cf408024f5d336527) (cherry picked from commit a3546bb28d437679df0d9bfb5f6747297fe284ca) --- 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 f0d747e5c..76c80bd3d 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -14734,7 +14734,7 @@ _get_generate_mac_address_mask_setting (NMDevice *self, NMConnection *connection } a = nm_config_data_get_connection_default (NM_CONFIG_GET_DATA, - is_wifi ? "wifi.generate-mac-address-mask" : "ethernet.generate-mac-mac-address-mask", + is_wifi ? "wifi.generate-mac-address-mask" : "ethernet.generate-mac-address-mask", self); if (!a) return NULL; -- 2.17.1