From a31dfea05267f761a299d0fd24581a9e5feb58bb Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 7 Nov 2013 12:20:53 -0600 Subject: [PATCH] core: fix assumed active connection exporting after ff7e47a4 (core: kill PendingActivation and move authorization to NMActiveConnection) Assumed active connections never got a D-Bus path and were never exported to D-Bus. --- src/nm-manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nm-manager.c b/src/nm-manager.c index 9177f3a30a..e97284e141 100644 --- a/src/nm-manager.c +++ b/src/nm-manager.c @@ -1985,6 +1985,7 @@ add_device (NMManager *self, NMDevice *device) subject = nm_auth_subject_new_internal (); active = _new_active_connection (self, connection, NULL, device, subject, &error); if (active) { + nm_active_connection_export (active); active_connection_add (self, active); nm_device_activate (device, NM_ACT_REQUEST (active)); } else {