diff options
author | Steve Holme <steve_holme@hotmail.com> | 2012-06-02 21:38:55 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2012-06-02 21:38:55 +0100 |
commit | 1fa2af5136e1167bfc18a128d16a89865ca5065a (patch) | |
tree | f04bb2980d0fd5cfd129c159bb636975bdca250d /lib/pop3.c | |
parent | cfa81b8fb00928a88ed4b76807f564d3a895a493 (diff) | |
download | curl-1fa2af5136e1167bfc18a128d16a89865ca5065a.tar.gz |
pop3.c: Small code tidy up
Corrected lines exceeding 78 characters.
Repositioned some comments and added extra clarity.
Diffstat (limited to 'lib/pop3.c')
-rw-r--r-- | lib/pop3.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/lib/pop3.c b/lib/pop3.c index b212e9536..579e77bb5 100644 --- a/lib/pop3.c +++ b/lib/pop3.c @@ -367,7 +367,7 @@ static CURLcode pop3_authenticate(struct connectdata *conn) } 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) { @@ -666,7 +666,8 @@ static CURLcode pop3_state_auth_final_resp(struct connectdata *conn, result = CURLE_LOGIN_DENIED; } - state(conn, POP3_STOP); /* End of connect phase */ + /* End of connect phase */ + state(conn, POP3_STOP); return result; } @@ -713,7 +714,8 @@ static CURLcode pop3_state_pass_resp(struct connectdata *conn, result = CURLE_LOGIN_DENIED; } - state(conn, POP3_STOP); /* End of connect phase */ + /* End of connect phase */ + state(conn, POP3_STOP); return result; } @@ -768,6 +770,7 @@ static CURLcode pop3_state_command_resp(struct connectdata *conn, pp->cache_size = 0; } + /* End of do phase */ state(conn, POP3_STOP); return result; @@ -852,7 +855,8 @@ static CURLcode pop3_statemach_act(struct connectdata *conn) 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: @@ -860,7 +864,8 @@ static CURLcode pop3_statemach_act(struct connectdata *conn) 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: |