diff options
| author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-12-07 13:03:17 +0100 |
|---|---|---|
| committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-12-07 13:03:17 +0100 |
| commit | 355d8f4a1ef610af427160b6121d20c9969edc68 (patch) | |
| tree | 5c8c4f3bd2ed6364e428f351b6957617a2676315 /src/Daemon/MiddleWare.cpp | |
| parent | ea158979a5fb16c7e38488d8f3973ce7cef82e0d (diff) | |
| parent | 9c20953d95a20d031896245f98a62f1e89d29c33 (diff) | |
| download | abrt-355d8f4a1ef610af427160b6121d20c9969edc68.tar.gz abrt-355d8f4a1ef610af427160b6121d20c9969edc68.tar.xz abrt-355d8f4a1ef610af427160b6121d20c9969edc68.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/Daemon/MiddleWare.cpp')
| -rw-r--r-- | src/Daemon/MiddleWare.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Daemon/MiddleWare.cpp b/src/Daemon/MiddleWare.cpp index 8528f64..e775764 100644 --- a/src/Daemon/MiddleWare.cpp +++ b/src/Daemon/MiddleWare.cpp @@ -348,7 +348,7 @@ void RunActionsAndReporters(const char *pDebugDumpDir) map_crash_report_t crashReport; DebugDumpToCrashReport(pDebugDumpDir, crashReport); VERB2 log("%s.Report(...)", it_ar->first.c_str()); - reporter->Report(crashReport, plugin_settings, it_ar->second); + reporter->Report(crashReport, plugin_settings, it_ar->second.c_str()); } else if (tp == ACTION) { @@ -490,7 +490,7 @@ report_status_t Report(const map_crash_report_t& pCrashReport, } #endif map_plugin_settings_t plugin_settings = pSettings[pluginName]; - std::string res = reporter->Report(pCrashReport, plugin_settings, it_r->second); + std::string res = reporter->Report(pCrashReport, plugin_settings, it_r->second.c_str()); #if 0 /* Using ~user/.abrt/ is bad wrt security */ if (home != "") @@ -688,7 +688,7 @@ void autoreport(const pair_string_string_t& reporter_options, const map_crash_re } map_plugin_settings_t plugin_settings; - std::string res = reporter->Report(crash_report, plugin_settings, reporter_options.second); + std::string res = reporter->Report(crash_report, plugin_settings, reporter_options.second.c_str()); } /** |
