From b8a1a3864005307929632d77575bcde92b3354c5 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Mon, 28 Mar 2011 10:42:19 -0500 Subject: [PATCH] core: fix wired connection completion It was using a connection base type of 'connection', which clearly isn't right. --- src/nm-device-ethernet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nm-device-ethernet.c b/src/nm-device-ethernet.c index 54995f6e71..82e6497ee5 100644 --- a/src/nm-device-ethernet.c +++ b/src/nm-device-ethernet.c @@ -1676,7 +1676,7 @@ real_complete_connection (NMDevice *device, * then PPPoE should be our connection type. */ nm_utils_complete_generic (connection, - s_pppoe ? NM_SETTING_PPPOE_SETTING_NAME : NM_SETTING_CONNECTION_SETTING_NAME, + s_pppoe ? NM_SETTING_PPPOE_SETTING_NAME : NM_SETTING_WIRED_SETTING_NAME, existing_connections, s_pppoe ? _("PPPoE connection %d") : _("Wired connection %d"), NULL,