Loading lib/smtp.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1039,7 +1039,7 @@ static CURLcode smtp_setup_connection(struct connectdata * conn) return CURLE_OK; return CURLE_OK; } } CURLcode Curl_smtp_escape_eob(struct connectdata *conn, int nread) CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread) { { /* When sending SMTP payload, we must detect CRLF.CRLF sequences in /* When sending SMTP payload, we must detect CRLF.CRLF sequences in * the data and make sure it is sent as CRLF..CRLF instead, as * the data and make sure it is sent as CRLF..CRLF instead, as Loading lib/smtp.h +1 −1 Original line number Original line Diff line number Diff line Loading @@ -64,6 +64,6 @@ extern const struct Curl_handler Curl_handler_smtps; #define SMTP_EOB_REPL "\x0d\x0a\x2e\x2e" #define SMTP_EOB_REPL "\x0d\x0a\x2e\x2e" #define SMTP_EOB_REPL_LEN 4 #define SMTP_EOB_REPL_LEN 4 CURLcode Curl_smtp_escape_eob(struct connectdata *conn, int nread); CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread); #endif /* __SMTP_H */ #endif /* __SMTP_H */ Loading
lib/smtp.c +1 −1 Original line number Original line Diff line number Diff line Loading @@ -1039,7 +1039,7 @@ static CURLcode smtp_setup_connection(struct connectdata * conn) return CURLE_OK; return CURLE_OK; } } CURLcode Curl_smtp_escape_eob(struct connectdata *conn, int nread) CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread) { { /* When sending SMTP payload, we must detect CRLF.CRLF sequences in /* When sending SMTP payload, we must detect CRLF.CRLF sequences in * the data and make sure it is sent as CRLF..CRLF instead, as * the data and make sure it is sent as CRLF..CRLF instead, as Loading
lib/smtp.h +1 −1 Original line number Original line Diff line number Diff line Loading @@ -64,6 +64,6 @@ extern const struct Curl_handler Curl_handler_smtps; #define SMTP_EOB_REPL "\x0d\x0a\x2e\x2e" #define SMTP_EOB_REPL "\x0d\x0a\x2e\x2e" #define SMTP_EOB_REPL_LEN 4 #define SMTP_EOB_REPL_LEN 4 CURLcode Curl_smtp_escape_eob(struct connectdata *conn, int nread); CURLcode Curl_smtp_escape_eob(struct connectdata *conn, ssize_t nread); #endif /* __SMTP_H */ #endif /* __SMTP_H */