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

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