Add prompt for the password when reading from stdin
This commit is contained in:
parent
f03b2e227a
commit
6b8ac9ef18
@ -729,6 +729,7 @@ int main(int argc, char* argv[])
|
|||||||
return 1;
|
return 1;
|
||||||
if (strcmp("-", instance->settings->password) == 0)
|
if (strcmp("-", instance->settings->password) == 0)
|
||||||
{
|
{
|
||||||
|
printf("Password: ");
|
||||||
fgets(instance->settings->password, 512-1, stdin);
|
fgets(instance->settings->password, 512-1, stdin);
|
||||||
*(instance->settings->password + strlen(instance->settings->password) - 1) = '\0';
|
*(instance->settings->password + strlen(instance->settings->password) - 1) = '\0';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user