From 2a6bb291df10cc699a5ba46312b76d57962eaa04 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 2 Jun 2013 12:08:35 +0200 Subject: [PATCH] Make an error message a complete sentence. Signed-off-by: Benno Schulenberg --- src/cookies.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/cookies.c b/src/cookies.c index 4efda88..9dba460 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -684,10 +684,8 @@ cookie_handle_set_cookie (struct cookie_jar *jar, if (!check_domain_match (cookie->domain, host)) { logprintf (LOG_NOTQUIET, - _("Cookie coming from %s attempted to set domain to "), - quotearg_style (escape_quoting_style, host)); - logprintf (LOG_NOTQUIET, - _("%s\n"), + _("Cookie coming from %s attempted to set domain to %s."), + quotearg_style (escape_quoting_style, host), quotearg_style (escape_quoting_style, cookie->domain)); cookie->discard_requested = true; } -- 1.7.0.4