summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-06-30 11:30:25 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-06-30 11:30:25 +0200
commitc6d903a5e99fd4512490aeaab918eec9e9554ba5 (patch)
treeea7d78adb80fa23799da086d194d50f8e79f1398
parentbe5071dd5a5dc92be3065c13312fdaa0ade55e61 (diff)
downloadabrt-c6d903a5e99fd4512490aeaab918eec9e9554ba5.tar.gz
abrt-c6d903a5e99fd4512490aeaab918eec9e9554ba5.tar.xz
abrt-c6d903a5e99fd4512490aeaab918eec9e9554ba5.zip
abrt_rh_support: improve error message
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--lib/Utils/abrt_rh_support.cpp49
1 files changed, 24 insertions, 25 deletions
diff --git a/lib/Utils/abrt_rh_support.cpp b/lib/Utils/abrt_rh_support.cpp
index 3785a4b7..d8216964 100644
--- a/lib/Utils/abrt_rh_support.cpp
+++ b/lib/Utils/abrt_rh_support.cpp
@@ -463,45 +463,44 @@ send_report_to_new_case(const char* baseURL,
errmsg = atch_state->curl_error_msg;
if ((!errmsg || !errmsg[0]) && atch_state->body && atch_state->body[0])
errmsg = atch_state->body;
- if (case_state->body && case_state->body[0])
+ if (atch_state->body && atch_state->body[0])
{
- if (errmsg) /* both bodies are present */
+ if (errmsg
+ && strcmp(errmsg, atch_state->body) != 0
+ ) /* both strata/curl error and body are present (and aren't the same) */
allocated = errmsg = xasprintf("%s. %s",
- case_state->body,
+ atch_state->body,
errmsg);
- else /* only ticket body exists */
- allocated = errmsg = xasprintf("%s. HTTP code %d",
- case_state->body,
- atch_state->http_resp_code);
- } else { /* there were no body in ticket response */
- if (!errmsg) /* ...and neither in attach response */
- allocated = errmsg = xasprintf(
- "HTTP code %d",
- atch_state->http_resp_code);
- /* else: only attach body exists */
+ else /* only body exists */
+ errmsg = atch_state->body;
}
/* Note: to prevent URL misparsing, make sure to delimit
* case_location only using spaces */
- retval = xasprintf("Case created: %s but report attachment failed: %s",
- case_location, errmsg);
+ retval = xasprintf("Case created: %s but report attachment failed (HTTP code %d)%s%s",
+ case_location,
+ atch_state->http_resp_code,
+ errmsg ? ": " : "",
+ errmsg ? errmsg : ""
+ );
break;
case 200:
case 201:
- char *body = atch_state->body;
- if (case_state->body && case_state->body[0])
- {
- body = case_state->body;
- if (atch_state->body && atch_state->body[0])
- allocated = body = xasprintf("%s\n%s",
- case_state->body,
- atch_state->body);
- }
+ // unused
+ //char *body = atch_state->body;
+ //if (case_state->body && case_state->body[0])
+ //{
+ // body = case_state->body;
+ // if (atch_state->body && atch_state->body[0])
+ // allocated = body = xasprintf("%s\n%s",
+ // case_state->body,
+ // atch_state->body);
+ //}
retval = xasprintf("Case created: %s", /*body,*/ case_location);
} /* switch (attach HTTP code) */
free_abrt_post_state(atch_state);
- } /* switch (ticket HTTP code) */
+ } /* switch (case HTTP code) */
free_abrt_post_state(case_state);
free(allocated);