summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorDan Winship <danw@redhat.com>2015-04-16 14:20:51 -0400
committerDan Winship <danw@redhat.com>2015-07-24 13:25:48 -0400
commit02370be7f31bbcd7a5ecd808c239d48bdad42024 (patch)
treeecddf2f1e6fe3b2c5578fa81fd3e399489d4291d /src/main.c
parent1424f249e3f00693784456a9ccaa0f7577af685f (diff)
downloadNetworkManager-02370be7f31bbcd7a5ecd808c239d48bdad42024.tar.gz
core: rename NMDBusManager to NMBusManager
Our gdbus generated types use the same names as their corresponding "real" types, but with "NM" changed to "NMDBus". Unfortunately, that means that introspection/nmdbus-manager.c (the generated type for src/nm-manager.c) uses the same type name as the entirely unrelated src/nm-dbus-manager.c. Fix this by removing the "d" from src/nm-dbus-manager.c. (We could rename the generated type instead, but then it becomes inconsistent with all the other generated types, and we're already using it as "NMDBusManager" in libnm/nm-manager.c.)
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c
index 31f63b7ae3..a0b6e37553 100644
--- a/src/main.c
+++ b/src/main.c
@@ -46,7 +46,7 @@
#include "main-utils.h"
#include "nm-manager.h"
#include "nm-linux-platform.h"
-#include "nm-dbus-manager.h"
+#include "nm-bus-manager.h"
#include "nm-device.h"
#include "nm-dhcp-manager.h"
#include "nm-logging.h"
@@ -422,7 +422,7 @@ main (int argc, char *argv[])
#endif
);
- if (!nm_dbus_manager_get_connection (nm_dbus_manager_get ())) {
+ if (!nm_bus_manager_get_connection (nm_bus_manager_get ())) {
#if HAVE_DBUS_GLIB_100
nm_log_warn (LOGD_CORE, "Failed to connect to D-Bus; only private bus is available");
#else
@@ -431,7 +431,7 @@ main (int argc, char *argv[])
#endif
} else {
/* Start our DBus service */
- if (!nm_dbus_manager_start_service (nm_dbus_manager_get ())) {
+ if (!nm_bus_manager_start_service (nm_bus_manager_get ())) {
nm_log_err (LOGD_CORE, "failed to start the dbus service.");
goto done;
}