From c93778bca165e0b8bf11a3ea586491a360f22842 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 12 Mar 2018 12:44:52 +0100 Subject: [PATCH] pty: fix read_password prototype Signed-off-by: Wolfgang Bumiller --- src/PVE/PTY.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PVE/PTY.pm b/src/PVE/PTY.pm index fa78196..23d76c0 100644 --- a/src/PVE/PTY.pm +++ b/src/PVE/PTY.pm @@ -165,7 +165,7 @@ sub tcsetsize($$$) { or die "failed to set window size: $!\n"; } -sub read_password(;$$) { +sub read_password($;$$) { my ($query, $infd, $outfd) = @_; my $password = ''; -- 2.39.2