Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions jvpn.pl
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
print $1;
print "\n";
print "Enter challenge response: ";
$password=read_password();
$password=read_input("password");
print "\n";
}
# if password was specified in plaintext we should not use it
Expand All @@ -191,7 +191,7 @@
print "To continue, wait for the token code to change and ".
"then enter the new pin and code.\n";
print "Enter PIN+password: ";
$password=read_password();
$password=read_input("password");
print "\n";
}
elsif ($cfgpass =~ /^helper:(.+)/) {
Expand Down