Loading lib/imap.c +2 −2 Original line number Diff line number Diff line Loading @@ -1153,7 +1153,7 @@ static CURLcode imap_state_auth_digest_resp_resp(struct connectdata *conn, } else { /* Send an empty response */ result = Curl_pp_sendf(&conn->proto.imapc.pp, ""); result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", ""); if(!result) state(conn, IMAP_AUTHENTICATE_FINAL); Loading Loading @@ -1782,7 +1782,7 @@ static CURLcode imap_done(struct connectdata *conn, CURLcode status, state(conn, IMAP_FETCH_FINAL); else { /* End the APPEND command first by sending an empty line */ result = Curl_pp_sendf(&conn->proto.imapc.pp, ""); result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", ""); if(!result) state(conn, IMAP_APPEND_FINAL); } Loading lib/pop3.c +5 −5 Original line number Diff line number Diff line Loading @@ -405,7 +405,7 @@ static CURLcode pop3_perform_capa(struct connectdata *conn) pop3c->tls_supported = FALSE; /* Clear the TLS capability */ /* Send the CAPA command */ result = Curl_pp_sendf(&pop3c->pp, "CAPA"); result = Curl_pp_sendf(&pop3c->pp, "%s", "CAPA"); if(!result) state(conn, POP3_CAPA); Loading @@ -424,7 +424,7 @@ static CURLcode pop3_perform_starttls(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the STLS command */ result = Curl_pp_sendf(&conn->proto.pop3c.pp, "STLS"); result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", "STLS"); if(!result) state(conn, POP3_STARTTLS); Loading Loading @@ -693,7 +693,7 @@ static CURLcode pop3_perform_command(struct connectdata *conn) (pop3->custom && pop3->custom[0] != '\0' ? pop3->custom : command), pop3->id); else result = Curl_pp_sendf(&conn->proto.pop3c.pp, result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", (pop3->custom && pop3->custom[0] != '\0' ? pop3->custom : command)); Loading @@ -714,7 +714,7 @@ static CURLcode pop3_perform_quit(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the QUIT command */ result = Curl_pp_sendf(&conn->proto.pop3c.pp, "QUIT"); result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", "QUIT"); if(!result) state(conn, POP3_QUIT); Loading Loading @@ -1020,7 +1020,7 @@ static CURLcode pop3_state_auth_digest_resp_resp(struct connectdata *conn, } else { /* Send an empty response */ result = Curl_pp_sendf(&conn->proto.pop3c.pp, ""); result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", ""); if(!result) state(conn, POP3_AUTH_FINAL); Loading lib/smtp.c +4 −4 Original line number Diff line number Diff line Loading @@ -403,7 +403,7 @@ static CURLcode smtp_perform_starttls(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the STARTTLS command */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, "STARTTLS"); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "STARTTLS"); if(!result) state(conn, SMTP_STARTTLS); Loading Loading @@ -664,7 +664,7 @@ static CURLcode smtp_perform_quit(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the QUIT command */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, "QUIT"); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "QUIT"); if(!result) state(conn, SMTP_QUIT); Loading Loading @@ -997,7 +997,7 @@ static CURLcode smtp_state_auth_digest_resp_resp(struct connectdata *conn, } else { /* Send an empty response */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, ""); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", ""); if(!result) state(conn, SMTP_AUTH_FINAL); Loading Loading @@ -1159,7 +1159,7 @@ static CURLcode smtp_state_rcpt_resp(struct connectdata *conn, int smtpcode, } /* Send the DATA command */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, "DATA"); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "DATA"); if(!result) state(conn, SMTP_DATA); Loading Loading
lib/imap.c +2 −2 Original line number Diff line number Diff line Loading @@ -1153,7 +1153,7 @@ static CURLcode imap_state_auth_digest_resp_resp(struct connectdata *conn, } else { /* Send an empty response */ result = Curl_pp_sendf(&conn->proto.imapc.pp, ""); result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", ""); if(!result) state(conn, IMAP_AUTHENTICATE_FINAL); Loading Loading @@ -1782,7 +1782,7 @@ static CURLcode imap_done(struct connectdata *conn, CURLcode status, state(conn, IMAP_FETCH_FINAL); else { /* End the APPEND command first by sending an empty line */ result = Curl_pp_sendf(&conn->proto.imapc.pp, ""); result = Curl_pp_sendf(&conn->proto.imapc.pp, "%s", ""); if(!result) state(conn, IMAP_APPEND_FINAL); } Loading
lib/pop3.c +5 −5 Original line number Diff line number Diff line Loading @@ -405,7 +405,7 @@ static CURLcode pop3_perform_capa(struct connectdata *conn) pop3c->tls_supported = FALSE; /* Clear the TLS capability */ /* Send the CAPA command */ result = Curl_pp_sendf(&pop3c->pp, "CAPA"); result = Curl_pp_sendf(&pop3c->pp, "%s", "CAPA"); if(!result) state(conn, POP3_CAPA); Loading @@ -424,7 +424,7 @@ static CURLcode pop3_perform_starttls(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the STLS command */ result = Curl_pp_sendf(&conn->proto.pop3c.pp, "STLS"); result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", "STLS"); if(!result) state(conn, POP3_STARTTLS); Loading Loading @@ -693,7 +693,7 @@ static CURLcode pop3_perform_command(struct connectdata *conn) (pop3->custom && pop3->custom[0] != '\0' ? pop3->custom : command), pop3->id); else result = Curl_pp_sendf(&conn->proto.pop3c.pp, result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", (pop3->custom && pop3->custom[0] != '\0' ? pop3->custom : command)); Loading @@ -714,7 +714,7 @@ static CURLcode pop3_perform_quit(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the QUIT command */ result = Curl_pp_sendf(&conn->proto.pop3c.pp, "QUIT"); result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", "QUIT"); if(!result) state(conn, POP3_QUIT); Loading Loading @@ -1020,7 +1020,7 @@ static CURLcode pop3_state_auth_digest_resp_resp(struct connectdata *conn, } else { /* Send an empty response */ result = Curl_pp_sendf(&conn->proto.pop3c.pp, ""); result = Curl_pp_sendf(&conn->proto.pop3c.pp, "%s", ""); if(!result) state(conn, POP3_AUTH_FINAL); Loading
lib/smtp.c +4 −4 Original line number Diff line number Diff line Loading @@ -403,7 +403,7 @@ static CURLcode smtp_perform_starttls(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the STARTTLS command */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, "STARTTLS"); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "STARTTLS"); if(!result) state(conn, SMTP_STARTTLS); Loading Loading @@ -664,7 +664,7 @@ static CURLcode smtp_perform_quit(struct connectdata *conn) CURLcode result = CURLE_OK; /* Send the QUIT command */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, "QUIT"); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "QUIT"); if(!result) state(conn, SMTP_QUIT); Loading Loading @@ -997,7 +997,7 @@ static CURLcode smtp_state_auth_digest_resp_resp(struct connectdata *conn, } else { /* Send an empty response */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, ""); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", ""); if(!result) state(conn, SMTP_AUTH_FINAL); Loading Loading @@ -1159,7 +1159,7 @@ static CURLcode smtp_state_rcpt_resp(struct connectdata *conn, int smtpcode, } /* Send the DATA command */ result = Curl_pp_sendf(&conn->proto.smtpc.pp, "DATA"); result = Curl_pp_sendf(&conn->proto.smtpc.pp, "%s", "DATA"); if(!result) state(conn, SMTP_DATA); Loading