afaece0bdd
Net::SSH::Perl is an all-Perl module implementing an SSH (Secure Shell) client. It is compatible with both the SSH-1 and SSH-2 protocols.
22 lines
683 B
Plaintext
22 lines
683 B
Plaintext
$OpenBSD: patch-Makefile_PL,v 1.1.1.1 2005/02/23 20:14:34 sturm Exp $
|
|
--- Makefile.PL.orig Tue Feb 22 22:22:43 2005
|
|
+++ Makefile.PL Tue Feb 22 22:23:52 2005
|
|
@@ -47,7 +47,7 @@ MSG
|
|
printf " [%d] SSH%d\n", $_, $_ for 1..2;
|
|
printf " [3] Both SSH1 and SSH2\n";
|
|
|
|
-my $p = prompt("\nWhich protocol(s) do you plan to use?", 3);
|
|
+my $p = 3;
|
|
print "\n";
|
|
|
|
@prereq{keys %{$SSH_PREREQ{$p}}} = values %{$SSH_PREREQ{$p}};
|
|
@@ -73,7 +73,7 @@ my $i = 1;
|
|
for my $ciph(sort { $a->[0] <=> $b->[0] } @cryptmod) {
|
|
printf " [%d] %s\n", $i++, $ciph->[0];
|
|
}
|
|
-my $c = prompt("\nEnter your choices, separated by spaces:", 1);
|
|
+my $c = "2 3 4 5";
|
|
print "\n";
|
|
|
|
for my $id(split /\s+/, $c) {
|