From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 6D1A6431FC3 for ; Sat, 8 Dec 2012 14:57:51 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bv8wQVIg2rvW for ; Sat, 8 Dec 2012 14:57:50 -0800 (PST) Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id D40CB431FD8 for ; Sat, 8 Dec 2012 14:57:42 -0800 (PST) Received: from fctnnbsc30w-142167090129.dhcp-dynamic.fibreop.nb.bellaliant.net ([142.167.90.129] helo=zancas.localnet) by tesseract.cs.unb.ca with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1ThTL3-00066i-UX; Sat, 08 Dec 2012 18:57:42 -0400 Received: from bremner by zancas.localnet with local (Exim 4.80) (envelope-from ) id 1ThTKy-0000qm-Ci; Sat, 08 Dec 2012 18:57:36 -0400 From: david@tethera.net To: notmuch@notmuchmail.org Subject: [Patch v5 06/11] notmuch-restore: normalize case of error messages. Date: Sat, 8 Dec 2012 18:56:56 -0400 Message-Id: <1355007421-3069-7-git-send-email-david@tethera.net> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1355007421-3069-1-git-send-email-david@tethera.net> References: <1355007421-3069-1-git-send-email-david@tethera.net> X-Spam_bar: - Cc: David Bremner X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Dec 2012 22:57:51 -0000 From: David Bremner In English, (unlike German) one does not capitalize the first word after a colon. --- notmuch-restore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notmuch-restore.c b/notmuch-restore.c index 44bf88d..dba882b 100644 --- a/notmuch-restore.c +++ b/notmuch-restore.c @@ -39,7 +39,7 @@ tag_message (unused (void *ctx), status = notmuch_database_find_message (notmuch, message_id, &message); if (status || message == NULL) { - fprintf (stderr, "Warning: Cannot apply tags to %smessage: %s\n", + fprintf (stderr, "Warning: cannot apply tags to %smessage: %s\n", message ? "" : "missing ", message_id); if (status) fprintf (stderr, "%s\n", notmuch_status_to_string (status)); @@ -214,7 +214,7 @@ notmuch_restore_command (unused (void *ctx), int argc, char *argv[]) if (ret == 0) { if (strncmp ("id:", query_string, 3) != 0) { - fprintf (stderr, "Unsupported query: %s\n", query_string); + fprintf (stderr, "Warning: unsupported query: %s\n", query_string); continue; } /* delete id: from front of string; tag_message -- 1.7.10.4