From dae0cb729b8775faa8be27eadc659056928b306a Mon Sep 17 00:00:00 2001 From: Chengwei Yang Date: Thu, 18 Jul 2013 11:12:51 +0800 Subject: [PATCH] Fix a typo: DBUS_ACTIVATION_ --> DBUS_STARTER_ DBUS_ACTIVATION_ADDRESS changed to DBUS_STARTER_ADDRESS and DBUS_ACTIVATION_BUS_TYPE changed to DBUS_STARTER_BUS_TYPE since 2005 by this commit 8873c90 Bug: https://bugs.freedesktop.org/show_bug.cgi?id=68308 --- dbus/dbus-bus.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbus/dbus-bus.c b/dbus/dbus-bus.c index 3b775c7..6873a5b 100644 --- a/dbus/dbus-bus.c +++ b/dbus/dbus-bus.c @@ -293,10 +293,10 @@ init_connections_unlocked (void) * the above code will work right */ - if (!_dbus_setenv ("DBUS_ACTIVATION_ADDRESS", NULL)) + if (!_dbus_setenv ("DBUS_STARTER_ADDRESS", NULL)) return FALSE; - if (!_dbus_setenv ("DBUS_ACTIVATION_BUS_TYPE", NULL)) + if (!_dbus_setenv ("DBUS_STARTER_BUS_TYPE", NULL)) return FALSE; if (!_dbus_register_shutdown_func (addresses_shutdown_func, -- 1.7.9.5