diff options
author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-08-10 18:50:13 +0000 |
---|---|---|
committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-08-10 18:50:13 +0000 |
commit | 3d9624ac1513b724eea443c01e655e24636c5153 (patch) | |
tree | f19c1d260b23365f84c779a252934f13e41429fb /serial/error.c | |
parent | 152ee1375cd30d6efa61b52b46682e9d187155ed (diff) |
serial: added new error - AlreadyExists
Diffstat (limited to 'serial/error.c')
-rw-r--r-- | serial/error.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/serial/error.c b/serial/error.c index 22be2b1e..ba894992 100644 --- a/serial/error.c +++ b/serial/error.c @@ -64,6 +64,14 @@ DBusHandlerResult err_connection_not_in_progress(DBusConnection *conn, "Connection creation not in progress")); } +DBusHandlerResult err_already_exists(DBusConnection *conn, + DBusMessage *msg, const char *str) +{ + return send_message_and_unref(conn, + dbus_message_new_error(msg, + SERIAL_ERROR_INTERFACE ".AlreadyExists", str)); +} + DBusHandlerResult err_does_not_exist(DBusConnection *conn, DBusMessage *msg, const char *str) { |