diff options
author | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-08-30 18:22:12 +0930 |
---|---|---|
committer | Peter Hutterer <peter@cs.unisa.edu.au> | 2007-08-31 15:03:02 +0930 |
commit | 3f42af8c0ef1e5379bc836f589e0cbee43c02ac5 (patch) | |
tree | 2322e9435cf0289a99431229e3a49bdb24558b0f /config | |
parent | 0fcde83d94507eadd9f99d4e6a63584b221c989c (diff) |
config: Use [config/dbus] consistently for error messages.
Diffstat (limited to 'config')
-rw-r--r-- | config/dbus.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config/dbus.c b/config/dbus.c index d43799448..c8675120f 100644 --- a/config/dbus.c +++ b/config/dbus.c @@ -139,7 +139,7 @@ add_device(DBusMessage *message, DBusMessage *reply, DBusError *error) MALFORMED_MESSAGE(); options->value = xstrdup(tmp); if (!options->value) { - ErrorF("[config] couldn't duplicate option!\n"); + ErrorF("[config/dbus] couldn't duplicate option!\n"); ret = BadAlloc; goto unwind; } @@ -204,7 +204,7 @@ remove_device(DBusMessage *message, DBusMessage *reply, DBusError *error) dbus_message_iter_init_append(reply, &reply_iter); if (!dbus_message_iter_init(message, &iter)) { - ErrorF("[config] failed to init iterator\n"); + ErrorF("[config/dbus] failed to init iterator\n"); MALFORMED_MESSAGE(); } @@ -215,12 +215,12 @@ remove_device(DBusMessage *message, DBusMessage *reply, DBusError *error) dev = LookupDeviceIntRec(deviceid); if (!dev) { - DebugF("[config] bogus device id %d given\n", deviceid); + DebugF("[config/dbus] bogus device id %d given\n", deviceid); ret = BadMatch; goto unwind; } - DebugF("[config] removing device %s (id %d)\n", dev->name, deviceid); + DebugF("[config/dbus] removing device %s (id %d)\n", dev->name, deviceid); /* Call PIE here so we don't try to dereference a device that's * already been removed. */ |