}
else {
infof(conn->data, "No known SASL auth mechanisms supported!\n");
- result = CURLE_LOGIN_DENIED; /* Other mechanisms not supported */
+ result = CURLE_LOGIN_DENIED; /* Other mechanisms not supported */
}
if(!result) {
result = CURLE_LOGIN_DENIED;
}
- state(conn, POP3_STOP); /* End of connect phase */
+ /* End of connect phase */
+ state(conn, POP3_STOP);
return result;
}
result = CURLE_LOGIN_DENIED;
}
- state(conn, POP3_STOP); /* End of connect phase */
+ /* End of connect phase */
+ state(conn, POP3_STOP);
return result;
}
pp->cache_size = 0;
}
+ /* End of do phase */
state(conn, POP3_STOP);
return result;
break;
case POP3_AUTH_LOGIN_PASSWD:
- result = pop3_state_auth_login_password_resp(conn, pop3code, pop3c->state);
+ result = pop3_state_auth_login_password_resp(conn, pop3code,
+ pop3c->state);
break;
case POP3_AUTH_NTLM:
break;
case POP3_AUTH_NTLM_TYPE2MSG:
- result = pop3_state_auth_ntlm_type2msg_resp(conn, pop3code, pop3c->state);
+ result = pop3_state_auth_ntlm_type2msg_resp(conn, pop3code,
+ pop3c->state);
break;
case POP3_AUTH_FINAL: