summaryrefslogtreecommitdiff
path: root/methods/rsh.cc
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2011-03-11 13:57:52 +0100
committerMichael Vogt <mvo@debian.org>2011-03-11 13:57:52 +0100
commitd19b539614c9ab44477e8716a5dd9983dd5a53b2 (patch)
treec6a7d9480118f802c02225589dab44bcef4de086 /methods/rsh.cc
parenta75b8cfeb6d7e2468b19534d5b5872c3885f0e1c (diff)
parentd6cc7079e895e76ad9d086fcc6a40224dd41bb62 (diff)
merged from lp:~mvo/apt/mvo
Diffstat (limited to 'methods/rsh.cc')
-rw-r--r--methods/rsh.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/methods/rsh.cc b/methods/rsh.cc
index 97b4ef151..21f0d0a22 100644
--- a/methods/rsh.cc
+++ b/methods/rsh.cc
@@ -110,6 +110,8 @@ bool RSHConn::Connect(string Host, string User)
// Probably should do
// dup2(open("/dev/null",O_RDONLY),STDERR_FILENO);
+ Args[i++] = Prog;
+
// Insert user-supplied command line options
Configuration::Item const *Opts = RshOptions;
if (Opts != 0)
@@ -123,7 +125,6 @@ bool RSHConn::Connect(string Host, string User)
}
}
- Args[i++] = Prog;
if (User.empty() == false) {
Args[i++] = "-l";
Args[i++] = User.c_str();