summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/KerneloopsReporter.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-12-09 14:54:51 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2009-12-09 14:54:51 +0100
commit1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc (patch)
tree902f48322056c0f53a3ef5b965161017c36a1311 /lib/Plugins/KerneloopsReporter.cpp
parente7541bf72e56f56c9af45fccbb8f77efe35dcb94 (diff)
downloadabrt-1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc.tar.gz
abrt-1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc.tar.xz
abrt-1ab4f7ab3ca04e0b8ba17eec75cf18345d6b3fbc.zip
fix incorrect wording
This looked wrong: "This crash has been reported, you can find the report(s) at: Kernel oops report was uploaded." Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/Plugins/KerneloopsReporter.cpp')
-rw-r--r--lib/Plugins/KerneloopsReporter.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Plugins/KerneloopsReporter.cpp b/lib/Plugins/KerneloopsReporter.cpp
index 29094e85..26430be6 100644
--- a/lib/Plugins/KerneloopsReporter.cpp
+++ b/lib/Plugins/KerneloopsReporter.cpp
@@ -113,7 +113,12 @@ std::string CKerneloopsReporter::Report(const map_crash_report_t& pCrashReport,
/* FIXME: be more informative */
throw CABRTException(EXCEP_PLUGIN, "CKerneloopsReporter::Report(): Report has not been sent");
}
- return "Kernel oops report was uploaded.";
+ /* Server replies with:
+ * 200 thank you for submitting the kernel oops information
+ * RemoteIP: 34192fd15e34bf60fac6a5f01bba04ddbd3f0558
+ * - no URL or bug ID apparently...
+ */
+ return "Kernel oops report was uploaded";
}
void CKerneloopsReporter::SetSettings(const map_plugin_settings_t& pSettings)