mirror of
https://github.com/curl/curl.git
synced 2025-03-31 16:00:35 +08:00
pop3.c: Added conditional compilation for NTLM function calls
Added USE_NTLM condition compilation around the NTLM functions called from pop3_statemach_act() introduced in commit 69f7156ad96877.
This commit is contained in:
parent
c12a414b21
commit
3b8cf5bd14
@ -892,6 +892,7 @@ static CURLcode pop3_statemach_act(struct connectdata *conn)
|
|||||||
pop3c->state);
|
pop3c->state);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef USE_NTLM
|
||||||
case POP3_AUTH_NTLM:
|
case POP3_AUTH_NTLM:
|
||||||
result = pop3_state_auth_ntlm_resp(conn, pop3code, pop3c->state);
|
result = pop3_state_auth_ntlm_resp(conn, pop3code, pop3c->state);
|
||||||
break;
|
break;
|
||||||
@ -900,6 +901,7 @@ static CURLcode pop3_statemach_act(struct connectdata *conn)
|
|||||||
result = pop3_state_auth_ntlm_type2msg_resp(conn, pop3code,
|
result = pop3_state_auth_ntlm_type2msg_resp(conn, pop3code,
|
||||||
pop3c->state);
|
pop3c->state);
|
||||||
break;
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
case POP3_AUTH_FINAL:
|
case POP3_AUTH_FINAL:
|
||||||
result = pop3_state_auth_final_resp(conn, pop3code, pop3c->state);
|
result = pop3_state_auth_final_resp(conn, pop3code, pop3c->state);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user