summaryrefslogtreecommitdiffstats
path: root/src/CLI/ABRTSocket.cpp
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2010-01-19 17:33:57 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2010-01-19 17:33:57 +0100
commit811e5d7e9917558b9529c42a9cc86a773b31c0c2 (patch)
tree8b62f6718e1bbcd997530a9e38fe57046af302c7 /src/CLI/ABRTSocket.cpp
parent186bde035d2789a0067d8137bdb9afde635802c8 (diff)
parent764c3a1e4f21c635c565cf5c20c480dbf48d1599 (diff)
downloadabrt-811e5d7e9917558b9529c42a9cc86a773b31c0c2.tar.gz
abrt-811e5d7e9917558b9529c42a9cc86a773b31c0c2.tar.xz
abrt-811e5d7e9917558b9529c42a9cc86a773b31c0c2.zip
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI/ABRTSocket.cpp')
-rw-r--r--src/CLI/ABRTSocket.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CLI/ABRTSocket.cpp b/src/CLI/ABRTSocket.cpp
index 1353134..82c304e 100644
--- a/src/CLI/ABRTSocket.cpp
+++ b/src/CLI/ABRTSocket.cpp
@@ -106,7 +106,7 @@ void CABRTSocket::Disconnect()
close(m_nSocket);
}
-vector_crash_infos_t CABRTSocket::GetCrashInfos()
+vector_map_crash_data_t CABRTSocket::GetCrashInfos()
{
std::string message = MESSAGE_GET_CRASH_INFOS;
Send(message);
@@ -115,7 +115,7 @@ vector_crash_infos_t CABRTSocket::GetCrashInfos()
return string_to_crash_infos(message);
}
-map_crash_report_t CABRTSocket::CreateReport(const std::string &pUUID)
+map_crash_data_t CABRTSocket::CreateReport(const std::string &pUUID)
{
std::string message = MESSAGE_CREATE_REPORT + pUUID;
Send(message);
@@ -124,7 +124,7 @@ map_crash_report_t CABRTSocket::CreateReport(const std::string &pUUID)
return string_to_crash_report(message);
}
-void CABRTSocket::Report(const map_crash_report_t& pReport)
+void CABRTSocket::Report(const map_crash_data_t& pReport)
{
std::string message = MESSAGE_REPORT + crash_report_to_string(pReport);
Send(message);