From 1d304ce1301f4bcc239683702e8d9e675f5f78f4 Mon Sep 17 00:00:00 2001 From: Jörg Thalheim Date: Fri, 20 Jun 2025 17:56:13 +0200 Subject: imap-send: fix confusing 'store' terminology in error message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The error message 'no imap store specified' is misleading because it refers to 'store' when the actual missing configuration is 'imap.folder'. Update the message to use the correct terminology that matches the configuration variable name. This reduces confusion for users who might otherwise look for non-existent 'imap.store' configuration when they see this error. Signed-off-by: Jörg Thalheim Signed-off-by: Junio C Hamano --- imap-send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'imap-send.c') diff --git a/imap-send.c b/imap-send.c index 603e3d6fbc..4b63d9ca41 100644 --- a/imap-send.c +++ b/imap-send.c @@ -1824,7 +1824,7 @@ int cmd_main(int argc, const char **argv) } if (!server.folder) { - fprintf(stderr, "no IMAP store specified\n"); + fprintf(stderr, "no IMAP folder specified\n"); ret = 1; goto out; } -- cgit v1.2.3