fix cram-md5 authentication

we need to send a newline after the response for imap to grok it.
This commit is contained in:
Oswald Buddenhagen 2013-03-23 09:59:58 +01:00
parent 3363ad0f11
commit fbfcfea5dc

View File

@ -1209,7 +1209,9 @@ do_cram_auth( imap_store_t *ctx, struct imap_cmd *cmdp, const char *prompt )
printf( ">+> %s\n", resp );
fflush( stdout );
}
return socket_write( &ctx->conn, resp, l, GiveOwn );
if (socket_write( &ctx->conn, resp, l, GiveOwn ) < 0)
return -1;
return socket_write( &ctx->conn, "\r\n", 2, KeepOwn );
}
#endif