mirror of
https://github.com/git/git.git
synced 2026-01-09 17:46:37 +00:00
imap-send: fix confusing 'store' terminology in error message
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 <joerg@thalheim.io> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
0ed16dc3c4
commit
1d304ce130
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user