aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Keith Winstein <keithw@mit.edu>2012-08-12 19:57:19 +0200
committerGravatar Keith Winstein <keithw@mit.edu>2012-08-12 19:57:19 +0200
commit56093d2961be6398559246b3c583742ba8007af1 (patch)
tree961bd21e6948f129c1e0675b30461d5375ec0f50
parentdce0c7f88052c4371c8fc8ac956fec527123f117 (diff)
Not all OpenSSH installations support GSSAPITrustDns=no, so this broke some.
-rwxr-xr-xscripts/mosh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mosh b/scripts/mosh
index c4c6b2f..3b37048 100755
--- a/scripts/mosh
+++ b/scripts/mosh
@@ -233,7 +233,7 @@ if ( $pid == 0 ) { # child
}
my $quoted_self = shell_quote( $0 );
- exec "$ssh " . shell_quote( '-S', 'none', '-o', 'GSSAPITrustDns=no', '-o', "ProxyCommand=$quoted_self --fake-proxy -- %h %p", '-t', $userhost, '--', "$server " . shell_quote( @server ) );
+ exec "$ssh " . shell_quote( '-S', 'none', '-o', "ProxyCommand=$quoted_self --fake-proxy -- %h %p", '-t', $userhost, '--', "$server " . shell_quote( @server ) );
die "Cannot exec ssh: $!\n";
} else { # server
my ( $ip, $port, $key );