diff options
| author | Denys Vlasenko <dvlasenk@redhat.com> | 2011-01-25 21:17:49 +0100 |
|---|---|---|
| committer | Denys Vlasenko <dvlasenk@redhat.com> | 2011-01-25 21:17:49 +0100 |
| commit | 7f5cbf38caa3c6fdd0afe3a4cb7a9bd3b3010596 (patch) | |
| tree | 18f2a6581d8428606309fdcd5b01b3a0d6379166 /src/plugins | |
| parent | d5cbfe52eaaa9f690a1e2937faf62781cd52d722 (diff) | |
| download | abrt-7f5cbf38caa3c6fdd0afe3a4cb7a9bd3b3010596.tar.gz abrt-7f5cbf38caa3c6fdd0afe3a4cb7a9bd3b3010596.tar.xz abrt-7f5cbf38caa3c6fdd0afe3a4cb7a9bd3b3010596.zip | |
split parse_release() into Bz and RHTS versions
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/abrt-action-bugzilla.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/abrt-action-bugzilla.cpp b/src/plugins/abrt-action-bugzilla.cpp index abbd53ae..ed8a7e72 100644 --- a/src/plugins/abrt-action-bugzilla.cpp +++ b/src/plugins/abrt-action-bugzilla.cpp @@ -328,7 +328,7 @@ xmlrpc_value* ctx::call_quicksearch_duphash(const char* component, const char* r { char *product = NULL; char *version = NULL; - parse_release(release, &product, &version); + parse_release_for_bz(release, &product, &version); query = xasprintf("ALL component:\"%s\" whiteboard:\"%s\" product:\"%s\"", component, duphash, product ); @@ -482,7 +482,7 @@ xmlrpc_int32 ctx::new_bug(crash_data_t *crash_data, int depend_on_bugno) char *product = NULL; char *version = NULL; - parse_release(release, &product, &version); + parse_release_for_bz(release, &product, &version); xmlrpc_value* result = NULL; char *summary = strbuf_free_nobuf(buf_summary); @@ -684,7 +684,7 @@ static void report_to_bugzilla( char *product = NULL; char *version = NULL; - parse_release(release, &product, &version); + parse_release_for_bz(release, &product, &version); free(version); xmlrpc_value *result; |
