From e6e62b417b2985ac2b3af98c4df7c9f57840b774 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Sat, 22 Feb 2014 13:21:31 +0100 Subject: [LIBREPORT PATCH 28/33] Fix typos in error messages Related in rhbz#1062498 Signed-off-by: Jakub Filak --- src/plugins/ureport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/ureport.c b/src/plugins/ureport.c index b57eada..39d27f6 100644 --- a/src/plugins/ureport.c +++ b/src/plugins/ureport.c @@ -335,7 +335,7 @@ static struct ureport_server_response *get_server_response(post_state_t *post_st if (post_state->http_resp_code == 503) { - error_msg(_("The server at '%s' is currently can't handle the request (got error 503)"), config->ur_url); + error_msg(_("The server at '%s' currently can't handle the request (got error 503)"), config->ur_url); return NULL; } @@ -353,7 +353,7 @@ static struct ureport_server_response *get_server_response(post_state_t *post_st if (is_error(json)) { - error_msg(_("Unable to parse response from ureport server at '%s"), config->ur_url); + error_msg(_("Unable to parse response from ureport server at '%s'"), config->ur_url); log_notice("%s", post_state->body); json_object_put(json); return NULL; -- 1.8.3.1