From b7e3d97935edf3cadd97da8bec2324649c5a26b3 Mon Sep 17 00:00:00 2001 From: Christopher Moore Date: Sun, 10 Jan 2016 17:12:41 +0000 Subject: [PATCH] remove extra spacing --- lib/net/ssh/transport/kex.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/net/ssh/transport/kex.rb b/lib/net/ssh/transport/kex.rb index 6fca89c62d..e0cfc1dbde 100644 --- a/lib/net/ssh/transport/kex.rb +++ b/lib/net/ssh/transport/kex.rb @@ -8,8 +8,8 @@ module Net::SSH::Transport # Maps the supported key-exchange algorithms as named by the SSH protocol # to their corresponding implementors. MAP = { - 'diffie-hellman-group-exchange-sha1' => DiffieHellmanGroupExchangeSHA1, - 'diffie-hellman-group1-sha1' => DiffieHellmanGroup1SHA1, + 'diffie-hellman-group-exchange-sha1' => DiffieHellmanGroupExchangeSHA1, + 'diffie-hellman-group1-sha1' => DiffieHellmanGroup1SHA1, } if defined?(DiffieHellmanGroupExchangeSHA256) MAP['diffie-hellman-group-exchange-sha256'] = DiffieHellmanGroupExchangeSHA256