1
0
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:
Daniel Stenberg 2000-11-10 09:19:09 +00:00
parent a5b2eb7962
commit 7b5c551835

View File

@ -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 */
}