diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-02-12 09:00:25 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-02-12 09:00:25 -0800 |
commit | d3c4e32b875498a15b342537306d63cdacbc4726 (patch) | |
tree | d7e7d5003e2f15e850c5cdddb1d589e73c9c3447 | |
parent | config.mak.uname: add FREAD_READS_DIRECTORIES for NonStop platform (diff) | |
parent | imap-send.c: add a missing space in error message (diff) | |
download | tgif-d3c4e32b875498a15b342537306d63cdacbc4726.tar.xz |
Merge branch 'nd/imap-send-typofix'
* nd/imap-send-typofix:
imap-send.c: add a missing space in error message
-rw-r--r-- | imap-send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/imap-send.c b/imap-send.c index 18ca6ba10a..6c54d8c29d 100644 --- a/imap-send.c +++ b/imap-send.c @@ -1114,7 +1114,7 @@ static struct imap_store *imap_open_store(struct imap_server_conf *srvc, char *f if (!strcmp(srvc->auth_method, "CRAM-MD5")) { if (!CAP(AUTH_CRAM_MD5)) { - fprintf(stderr, "You specified" + fprintf(stderr, "You specified " "CRAM-MD5 as authentication method, " "but %s doesn't support it.\n", srvc->host); goto bail; |