adjusted to the changed getpass_r()
This commit is contained in:
@@ -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 */
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user