summaryrefslogtreecommitdiffstats
path: root/src/plugins/abrt-action-bugzilla.cpp
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2010-11-26 17:51:54 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2010-11-26 17:51:54 +0100
commita22c570ddba7a71f717eb2209674f4301f5ba8d7 (patch)
tree9febb0bfac7c37dac060d1aec95476db2da5b568 /src/plugins/abrt-action-bugzilla.cpp
parentf43845314b189eb1810ee98b3c3be2dca3bfecd1 (diff)
downloadabrt-a22c570ddba7a71f717eb2209674f4301f5ba8d7.tar.gz
abrt-a22c570ddba7a71f717eb2209674f4301f5ba8d7.tar.xz
abrt-a22c570ddba7a71f717eb2209674f4301f5ba8d7.zip
preparatory patch for future factoring out of headers for reportlib
Some files and functions are renamed, no logic changes. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/plugins/abrt-action-bugzilla.cpp')
-rw-r--r--src/plugins/abrt-action-bugzilla.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/abrt-action-bugzilla.cpp b/src/plugins/abrt-action-bugzilla.cpp
index 7b51e9aa..b396e453 100644
--- a/src/plugins/abrt-action-bugzilla.cpp
+++ b/src/plugins/abrt-action-bugzilla.cpp
@@ -18,7 +18,7 @@
*/
#include "abrtlib.h"
#include "abrt_xmlrpc.h"
-#include "crash_types.h"
+#include "abrt_crash_dump.h"
#include "abrt_exception.h"
#define XML_RPC_SUFFIX "/xmlrpc.cgi"
@@ -645,7 +645,7 @@ static void report_to_bugzilla(
throw CABRTException(EXCEP_PLUGIN, _("Can't open '%s'"), dump_dir_name);
}
map_crash_data_t pCrashData;
- load_crash_data_from_debug_dump(dd, pCrashData);
+ load_crash_data_from_crash_dump_dir(dd, pCrashData);
dd_close(dd);
const char *env;