diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-01-18 16:31:03 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2010-01-18 16:31:03 +0100 |
| commit | b8ef905c6455ef98cd7fa488de7d602a70bd57dc (patch) | |
| tree | 8d99e35017aa08773a8ee63487a67bac983bd6f7 /src/CLI/dbus.cpp | |
| parent | 675ef3624349fbfbe165913270f24a947e0cb8d0 (diff) | |
| parent | 3cd4d651565e4afcc3c72bd32bb9ce2285b5c93d (diff) | |
| download | abrt-b8ef905c6455ef98cd7fa488de7d602a70bd57dc.tar.gz abrt-b8ef905c6455ef98cd7fa488de7d602a70bd57dc.tar.xz abrt-b8ef905c6455ef98cd7fa488de7d602a70bd57dc.zip | |
conflict
Diffstat (limited to 'src/CLI/dbus.cpp')
| -rw-r--r-- | src/CLI/dbus.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/CLI/dbus.cpp b/src/CLI/dbus.cpp index b218679..0d03c4d 100644 --- a/src/CLI/dbus.cpp +++ b/src/CLI/dbus.cpp @@ -184,7 +184,8 @@ int32_t call_DeleteDebugDump(const char* uuid) return result; } -vector_map_string_t call_GetPluginsInfo() +#ifdef UNUSED +map_map_string_t call_GetPluginsInfo() { DBusMessage *msg = new_call_msg(__func__ + 5); DBusMessage *reply = send_get_reply_and_unref(msg); @@ -192,7 +193,7 @@ vector_map_string_t call_GetPluginsInfo() DBusMessageIter in_iter; dbus_message_iter_init(reply, &in_iter); - vector_map_string_t argout; + map_map_string_t argout; int r = load_val(&in_iter, argout); if (r != ABRT_DBUS_LAST_FIELD) /* more values present, or bad type */ error_msg_and_die("dbus call %s: return type mismatch", __func__ + 5); @@ -200,6 +201,7 @@ vector_map_string_t call_GetPluginsInfo() dbus_message_unref(reply); return argout; } +#endif void handle_dbus_err(bool error_flag, DBusError *err) { |
