smtp: Renamed smtp_state_auth_passwd_resp() function
Renamed the login password response function to better describe it's purpose as well as for consistency with the imap and pop3 modules.
This commit is contained in:
parent
463082bea4
commit
dda53476ca
@ -661,9 +661,9 @@ static CURLcode smtp_state_auth_login_resp(struct connectdata *conn,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* For AUTH LOGIN user entry responses */
|
/* For AUTH LOGIN user entry responses */
|
||||||
static CURLcode smtp_state_auth_passwd_resp(struct connectdata *conn,
|
static CURLcode smtp_state_auth_login_password_resp(struct connectdata *conn,
|
||||||
int smtpcode,
|
int smtpcode,
|
||||||
smtpstate instate)
|
smtpstate instate)
|
||||||
{
|
{
|
||||||
CURLcode result = CURLE_OK;
|
CURLcode result = CURLE_OK;
|
||||||
struct SessionHandle *data = conn->data;
|
struct SessionHandle *data = conn->data;
|
||||||
@ -1174,7 +1174,8 @@ static CURLcode smtp_statemach_act(struct connectdata *conn)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case SMTP_AUTH_LOGIN_PASSWD:
|
case SMTP_AUTH_LOGIN_PASSWD:
|
||||||
result = smtp_state_auth_passwd_resp(conn, smtpcode, smtpc->state);
|
result = smtp_state_auth_login_password_resp(conn, smtpcode,
|
||||||
|
smtpc->state);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
#ifndef CURL_DISABLE_CRYPTO_AUTH
|
||||||
|
Loading…
x
Reference in New Issue
Block a user