mirror of
https://github.com/moparisthebest/curl
synced 2025-03-11 07:39:50 -04:00
adjusted to the changed getpass_r()
This commit is contained in:
parent
a5b2eb7962
commit
7b5c551835
@ -266,7 +266,12 @@ CURLcode curl_close(CURL *curl)
|
||||
|
||||
int my_getpass(void *clientp, char *prompt, char* buffer, int buflen )
|
||||
{
|
||||
return getpass_r(prompt, buffer, buflen);
|
||||
char *retbuf;
|
||||
retbuf = getpass_r(prompt, buffer, buflen);
|
||||
if(NULL == retbuf)
|
||||
return 1;
|
||||
else
|
||||
return 0; /* success */
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user