aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Iurt/Util.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Iurt/Util.pm')
-rw-r--r--lib/Iurt/Util.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Iurt/Util.pm b/lib/Iurt/Util.pm
index fa6f37f..f9dfa9f 100644
--- a/lib/Iurt/Util.pm
+++ b/lib/Iurt/Util.pm
@@ -180,7 +180,7 @@ local location I<$to>, using host and user specified in ssh_setup().
sub sget {
my $conf = shift;
my ($_opt, $user, $host) = @$conf;
- system('scp', '-q', '-rc', 'arcfour', "$user\@$host:$_[0]", $_[1]);
+ system('scp', '-q', '-r', "$user\@$host:$_[0]", $_[1]);
}
=item sput($handle, $from, $to)
@@ -195,7 +195,7 @@ location I<$to>, using host and user specified in ssh_setup().
sub sput {
my $conf = shift;
my ($_opt, $user, $host) = @$conf;
- system('scp', '-q', '-rc', 'arcfour', $_[0], "$user\@$host:$_[1]");
+ system('scp', '-q', '-r', $_[0], "$user\@$host:$_[1]");
}
=back