diff options
author | Havoc Pennington <hp@redhat.com> | 2003-04-09 20:31:21 +0000 |
---|---|---|
committer | Havoc Pennington <hp@redhat.com> | 2003-04-09 20:31:21 +0000 |
commit | 1708094c0e00ab433bb0a51981f8b77d24aee256 (patch) | |
tree | e30c5ca0f6011bb3f1a083b8a9b49ee778da0cbd /bus/driver.c | |
parent | 0e1945b3889f8be8e31e39ad2b982c8a192be41d (diff) |
2003-04-09 Havoc Pennington <hp@redhat.com>
* dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
a memory leak
* bus/dispatch.c (check_service_activated): fix bug in test
* dbus/dbus-mainloop.c (check_timeout): fix this up
* dbus/dbus-internals.c (_dbus_verbose_real): include PID in
verbose output so we can sort out output from different processes,
e.g. in the activation case.
Diffstat (limited to 'bus/driver.c')
-rw-r--r-- | bus/driver.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bus/driver.c b/bus/driver.c index 31b848e9..a3fe7c59 100644 --- a/bus/driver.c +++ b/bus/driver.c @@ -467,6 +467,8 @@ bus_driver_handle_acquire_service (DBusConnection *connection, dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED, "Cannot acquire a service starting with ':' such as \"%s\"", name); + + _dbus_verbose ("Attempt to acquire invalid base service name \"%s\"", name); goto out; } |