From 586f506eff6f9e713d0e71ecd52488c49c1c0d0d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 5 Jan 2012 23:08:20 -0800 Subject: [PATCH] Fix a terrible typo that causes vagrant ssh to fail --- lib/vagrant/ssh.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/ssh.rb b/lib/vagrant/ssh.rb index 4754acd5c..9dc983aa8 100644 --- a/lib/vagrant/ssh.rb +++ b/lib/vagrant/ssh.rb @@ -35,7 +35,7 @@ module Vagrant # If plain mode is enabled then we don't do any authentication (we don't # set a user or an identity file) - plain_mode = options[:plain_mode] + plain_mode = opts[:plain_mode] options = {} options[:port] = port(opts)