Blame SOURCES/0028-Fix-typos-in-error-messages.patch

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