diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-25 16:50:07 +0200 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-25 16:50:07 +0200 |
| commit | 7aaf0fb85fd60c04a612fe483f696a4f00f1f85e (patch) | |
| tree | 33f67da71c7eac6b5113e0bbf81b93888dd32bb4 /src/CLI | |
| parent | 39f00225b96499fbc765f9eaa353a93ebe8912e2 (diff) | |
| parent | f495fd571cc063c2e0980e14b0cac604a5c71b32 (diff) | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/CLI')
| -rw-r--r-- | src/CLI/ABRTSocket.cpp | 2 | ||||
| -rw-r--r-- | src/CLI/ABRTSocket.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/CLI/ABRTSocket.cpp b/src/CLI/ABRTSocket.cpp index a699bbdb..1f90f63a 100644 --- a/src/CLI/ABRTSocket.cpp +++ b/src/CLI/ABRTSocket.cpp @@ -117,7 +117,7 @@ map_crash_report_t CABRTSocket::CreateReport(const std::string &pUUID) return string_to_crash_report(message); } -void CABRTSocket::Report(map_crash_report_t pReport) +void CABRTSocket::Report(const map_crash_report_t& pReport) { std::string message = MESSAGE_REPORT + crash_report_to_string(pReport); Send(message); diff --git a/src/CLI/ABRTSocket.h b/src/CLI/ABRTSocket.h index 6e8a7775..d476411c 100644 --- a/src/CLI/ABRTSocket.h +++ b/src/CLI/ABRTSocket.h @@ -22,7 +22,7 @@ class CABRTSocket vector_crash_infos_t GetCrashInfos(); map_crash_report_t CreateReport(const std::string& pUUID); - void Report(map_crash_report_t pReport); + void Report(const map_crash_report_t& pReport); void DeleteDebugDump(const std::string& pUUID); }; |
