isync

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

commit 70e87eb99e125bb40a8a0af754222f434665dd95
parent 90a38ea8103504f4bdb816ee9aa0b26349e7e72b
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sun, 26 Sep 2010 15:26:16 +0200

remove useless message

don't complain about missing greeting response - we already complained
about an unexpected EOF anyway.

Diffstat:
Msrc/drv_imap.c | 4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/drv_imap.c b/src/drv_imap.c @@ -1394,10 +1394,8 @@ imap_open_store( store_conf_t *conf, #endif /* read the greeting string */ - if (buffer_gets( &ctx->buf, &rsp )) { - error( "IMAP error: no greeting response\n" ); + if (buffer_gets( &ctx->buf, &rsp )) goto bail; - } arg = next_arg( &rsp ); if (!arg || *arg != '*' || (arg = next_arg( &rsp )) == NULL) { error( "IMAP error: invalid greeting response\n" );