mirror of
https://github.com/curl/curl.git
synced 2026-06-24 12:35:38 +03:00
url: Fix incorrect variable type for result code
This commit is contained in:
parent
b75a88aa72
commit
63388fe1f3
1 changed files with 1 additions and 1 deletions
|
|
@ -4470,7 +4470,7 @@ static CURLcode parse_url_login(struct SessionHandle *data,
|
|||
static CURLcode parse_login_details(const char *login, const size_t len,
|
||||
char **userp, char **passwdp, char **optionsp)
|
||||
{
|
||||
int result = CURLE_OK;
|
||||
CURLcode result = CURLE_OK;
|
||||
char *utemp = NULL;
|
||||
char *ptemp = NULL;
|
||||
char *otemp = NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue