isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 93fb3c29c6f7c581feb2ea201721e38ace2a5af9
parent d0a8551703ee77b09820e359f2229476cb1dd038
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat, 23 Nov 2019 13:30:12 +0100

fix UIDNEXT error message

Diffstat:
Msrc/drv_imap.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/drv_imap.c b/src/drv_imap.c @@ -1173,7 +1173,7 @@ parse_response_code( imap_store_t *ctx, imap_cmd_t *cmd, char *s ) if (!(arg = next_arg( &s )) || (ctx->uidnext = strtoul( arg, &earg, 10 ), *earg)) { - error( "IMAP error: malformed NEXTUID status\n" ); + error( "IMAP error: malformed UIDNEXT status\n" ); return RESP_CANCEL; } } else if (!strcmp( "CAPABILITY", arg )) {