summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/KerneloopsReporter.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 /lib/Plugins/KerneloopsReporter.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 'lib/Plugins/KerneloopsReporter.cpp')
-rw-r--r--lib/Plugins/KerneloopsReporter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Plugins/KerneloopsReporter.cpp b/lib/Plugins/KerneloopsReporter.cpp
index 5cb525bc..7c488363 100644
--- a/lib/Plugins/KerneloopsReporter.cpp
+++ b/lib/Plugins/KerneloopsReporter.cpp
@@ -93,7 +93,7 @@ CKerneloopsReporter::CKerneloopsReporter() :
m_sSubmitURL("http://submit.kerneloops.org/submitoops.php")
{}
-std::string CKerneloopsReporter::Report(const map_crash_report_t& pCrashReport,
+std::string CKerneloopsReporter::Report(const map_crash_data_t& pCrashData,
const map_plugin_settings_t& pSettings,
const char *pArgs)
{
@@ -101,8 +101,8 @@ std::string CKerneloopsReporter::Report(const map_crash_report_t& pCrashReport,
update_client(_("Creating and submitting a report..."));
- map_crash_report_t::const_iterator it = pCrashReport.find(FILENAME_KERNELOOPS);
- if (it != pCrashReport.end()) {
+ map_crash_data_t::const_iterator it = pCrashData.find(FILENAME_KERNELOOPS);
+ if (it != pCrashData.end()) {
ret = http_post_to_kerneloops_site(
m_sSubmitURL.c_str(),
it->second[CD_CONTENT].c_str()