diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-08 20:54:03 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-08 20:54:03 +0000 |
commit | dda53476ca4ee777337db688ca75b6747f337ffc (patch) | |
tree | 33599909d8c501475b71248e41b876bfd48c0870 /lib | |
parent | 463082bea42d8bea751303da340218a18fb67e85 (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/smtp.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/smtp.c b/lib/smtp.c index bb1df5606..3a3447e63 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -661,9 +661,9 @@ static CURLcode smtp_state_auth_login_resp(struct connectdata *conn, } /* For AUTH LOGIN user entry responses */ -static CURLcode smtp_state_auth_passwd_resp(struct connectdata *conn, - int smtpcode, - smtpstate instate) +static CURLcode smtp_state_auth_login_password_resp(struct connectdata *conn, + int smtpcode, + smtpstate instate) { CURLcode result = CURLE_OK; struct SessionHandle *data = conn->data; @@ -1174,7 +1174,8 @@ static CURLcode smtp_statemach_act(struct connectdata *conn) break; 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; #ifndef CURL_DISABLE_CRYPTO_AUTH |