summaryrefslogtreecommitdiff
path: root/dbus/dbus-sysdeps-unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbus/dbus-sysdeps-unix.c')
-rw-r--r--dbus/dbus-sysdeps-unix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c
index f0fca85e..50ca60a2 100644
--- a/dbus/dbus-sysdeps-unix.c
+++ b/dbus/dbus-sysdeps-unix.c
@@ -3671,7 +3671,7 @@ _dbus_get_autolaunch_address (const char *scope,
* but that's done elsewhere, and if it worked, this function wouldn't
* be called.) */
const char *display;
- const char *progpath;
+ char *progpath;
char *argv[6];
int i;
DBusString uuid;
@@ -3716,9 +3716,9 @@ _dbus_get_autolaunch_address (const char *scope,
}
#ifdef DBUS_ENABLE_EMBEDDED_TESTS
- progpath = _dbus_getenv ("DBUS_TEST_DBUS_LAUNCH");
-
- if (progpath == NULL)
+ if (_dbus_getenv ("DBUS_USE_TEST_BINARY") != NULL)
+ progpath = TEST_BUS_LAUNCH_BINARY;
+ else
#endif
progpath = DBUS_BINDIR "/dbus-launch";
/*