diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-02-28 21:18:36 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-02-28 21:18:36 +0000 |
commit | 6ff7197e7046e3a56cf39be3914ed4dc394fc90c (patch) | |
tree | d0450508d3fa8736b56956f05a1772156f658532 /lib | |
parent | 0be2251394d3d4e6ba755c563fdda881a8d63393 (diff) |
imap: Small tidy up of function arguments
Diffstat (limited to 'lib')
-rw-r--r-- | lib/imap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/imap.c b/lib/imap.c index 83176bd4b..63840d4eb 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1214,8 +1214,7 @@ static CURLcode imap_state_login_resp(struct connectdata *conn, } /* For SELECT responses */ -static CURLcode imap_state_select_resp(struct connectdata *conn, - int imapcode, +static CURLcode imap_state_select_resp(struct connectdata *conn, int imapcode, imapstate instate) { CURLcode result = CURLE_OK; @@ -1987,7 +1986,7 @@ static CURLcode imap_regular_transfer(struct connectdata *conn, return result; } -static CURLcode imap_setup_connection(struct connectdata * conn) +static CURLcode imap_setup_connection(struct connectdata *conn) { struct SessionHandle *data = conn->data; |