libreport/0007-Fix-typo-in-error-message.patch
2014-02-18 15:26:45 +01:00

27 lines
912 B
Diff

From 5dc6032eeb0ca8036200e6e4b93845141de5412e Mon Sep 17 00:00:00 2001
From: Martin Milata <mmilata@redhat.com>
Date: Tue, 11 Feb 2014 17:48:27 +0100
Subject: [LIBREPORT PATCH 07/11] Fix typo in error message
Signed-off-by: Martin Milata <mmilata@redhat.com>
---
src/plugins/ureport.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/plugins/ureport.c b/src/plugins/ureport.c
index b57eada..1ac2d13 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;
}
--
1.8.3.1