daemon: Don't treat it as a fatal error if we can't connect to the session bus

http://lists.freedesktop.org/archives/pulseaudio-discuss/2011-June/010276.html
This commit is contained in:
Tanu Kaskinen 2011-10-06 23:28:37 +03:00 committed by Arun Raghavan
parent 3c4d43d9dc
commit 6d58497dd1
2 changed files with 7 additions and 7 deletions

View file

@ -485,7 +485,7 @@ pa_dbusobj_server_lookup *pa_dbusobj_server_lookup_new(pa_core *c) {
sl->path_registered = FALSE;
if (!(sl->conn = pa_dbus_bus_get(c, DBUS_BUS_SESSION, &error)) || dbus_error_is_set(&error)) {
pa_log("Unable to contact D-Bus: %s: %s", error.name, error.message);
pa_log_warn("Unable to contact D-Bus: %s: %s", error.name, error.message);
goto fail;
}