diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-09-01 13:30:12 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-09-01 13:30:12 +0100 |
commit | 322f0bc2f1af4a985e85ee5c8639e3b454314ccd (patch) | |
tree | 8949e5cc2bf099738cb801e8c4f649ef3648281f /lib/url.c | |
parent | af4bddf20b5d99cce55367ec63f793e1ce262e3d (diff) |
url.c: Fixed compilation warning
An enumerated type is mixed with another type
Diffstat (limited to 'lib/url.c')
-rw-r--r-- | lib/url.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4795,9 +4795,9 @@ static CURLcode parse_remote_port(struct SessionHandle *data, * Override the login details from the URL with that in the CURLOPT_USERPWD * option or a .netrc file, if applicable. */ -static int override_login(struct SessionHandle *data, - struct connectdata *conn, - char **userp, char **passwdp, char **optionsp) +static CURLcode override_login(struct SessionHandle *data, + struct connectdata *conn, + char **userp, char **passwdp, char **optionsp) { if(data->set.str[STRING_USERNAME]) { free(*userp); @@ -4838,6 +4838,7 @@ static int override_login(struct SessionHandle *data, conn->bits.user_passwd = TRUE; /* enable user+password */ } } + return CURLE_OK; } |