diff options
| author | Karel Klic <kklic@redhat.com> | 2011-03-03 14:10:54 +0100 |
|---|---|---|
| committer | Karel Klic <kklic@redhat.com> | 2011-03-03 14:10:54 +0100 |
| commit | 0480abdfc05bc4bb785b3c89714795bb6d0e0f69 (patch) | |
| tree | 45b65899ae30d73836c047d41e8e528cf6a25cd3 /src/plugins | |
| parent | ceaecf58a14dff5555d1a6a1ff5fa7f46149e927 (diff) | |
| parent | fd5c97267cda4cfbc23e367fc1338aa0988a8b44 (diff) | |
| download | abrt-0480abdfc05bc4bb785b3c89714795bb6d0e0f69.tar.gz abrt-0480abdfc05bc4bb785b3c89714795bb6d0e0f69.tar.xz abrt-0480abdfc05bc4bb785b3c89714795bb6d0e0f69.zip | |
Merge branch 'master' of ssh://git.fedorahosted.org/git/abrt
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/Makefile.am | 24 | ||||
| -rw-r--r-- | src/plugins/abrt-action-bugzilla.cpp | 2 |
2 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am index 59e0f1a4..1a3921b9 100644 --- a/src/plugins/Makefile.am +++ b/src/plugins/Makefile.am @@ -79,7 +79,7 @@ abrt_dump_oops_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_dump_oops_LDADD = \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_analyze_c_SOURCES = \ abrt-action-analyze-c.c @@ -98,7 +98,7 @@ abrt_action_analyze_c_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_action_analyze_c_LDADD = \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_analyze_python_SOURCES = \ abrt-action-analyze-python.c @@ -117,7 +117,7 @@ abrt_action_analyze_python_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_action_analyze_python_LDADD = \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_analyze_oops_SOURCES = \ abrt-action-analyze-oops.c @@ -136,7 +136,7 @@ abrt_action_analyze_oops_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_action_analyze_oops_LDADD = \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_generate_backtrace_SOURCES = \ abrt-action-generate-backtrace.c @@ -155,7 +155,7 @@ abrt_action_generate_backtrace_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_action_generate_backtrace_LDADD = \ - ../lib/libreport.la \ + ../lib/libreport2.la \ ../btparser/libbtparser.la abrt_action_bugzilla_SOURCES = \ @@ -177,7 +177,7 @@ abrt_action_bugzilla_CPPFLAGS = \ abrt_action_bugzilla_LDADD = \ $(GLIB_LIBS) \ ../lib/libabrt_web.la \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_rhtsupport_SOURCES = \ abrt_rh_support.h abrt_rh_support.c \ @@ -202,7 +202,7 @@ abrt_action_rhtsupport_LDADD = \ $(GLIB_LIBS) \ $(XMLRPC_LIBS) $(XMLRPC_CLIENT_LIBS) \ ../lib/libabrt_web.la \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_upload_SOURCES = \ abrt-action-upload.c @@ -225,7 +225,7 @@ abrt_action_upload_LDFLAGS = -ltar abrt_action_upload_LDADD = \ $(GLIB_LIBS) \ $(CURL_LIBS) \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_kerneloops_SOURCES = \ abrt-action-kerneloops.c @@ -245,7 +245,7 @@ abrt_action_kerneloops_CPPFLAGS = \ -Wall -Werror abrt_action_kerneloops_LDADD = \ ../lib/libabrt_web.la \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_mailx_SOURCES = \ abrt-action-mailx.c @@ -264,7 +264,7 @@ abrt_action_mailx_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_action_mailx_LDADD = \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_print_SOURCES = \ abrt-action-print.c @@ -283,7 +283,7 @@ abrt_action_print_CPPFLAGS = \ -D_GNU_SOURCE \ -Wall -Werror abrt_action_print_LDADD = \ - ../lib/libreport.la + ../lib/libreport2.la abrt_action_install_debuginfo_SOURCES = \ abrt-action-install-debuginfo.c @@ -305,7 +305,7 @@ abrt_retrace_client_SOURCES = \ -D_GNU_SOURCE \ -Wall -Werror abrt_retrace_client_LDADD = \ - ../lib/libreport.la \ + ../lib/libreport2.la \ ../btparser/libbtparser.la \ $(NSS_LIBS) diff --git a/src/plugins/abrt-action-bugzilla.cpp b/src/plugins/abrt-action-bugzilla.cpp index 2aa32b75..1a391ae9 100644 --- a/src/plugins/abrt-action-bugzilla.cpp +++ b/src/plugins/abrt-action-bugzilla.cpp @@ -854,7 +854,7 @@ static void report_to_bugzilla( throw_if_xml_fault_occurred(&bz_server.env); } - char *dsc = make_description_reproduce_comment(crash_data); + char *dsc = make_description_comment(crash_data); if (dsc) { const char* package = get_crash_item_content_or_NULL(crash_data, FILENAME_PACKAGE); |
