From d2f45e6877d27a3fcfe2c810fd198f7714775377 Mon Sep 17 00:00:00 2001 From: Irina Chernushina Date: Mon, 24 Aug 2009 18:23:09 +0400 Subject: [PATCH] CVS+SSH+SOCKS: minus requestor-type check (proxy returns 'server' somewhy) --- .../cvsSupport2/connections/ssh/SocksAuthenticatorManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/cvs2/cvs_util/src/com/intellij/cvsSupport2/connections/ssh/SocksAuthenticatorManager.java b/plugins/cvs2/cvs_util/src/com/intellij/cvsSupport2/connections/ssh/SocksAuthenticatorManager.java index e4ba8792e3..07ece67349 100644 --- a/plugins/cvs2/cvs_util/src/com/intellij/cvsSupport2/connections/ssh/SocksAuthenticatorManager.java +++ b/plugins/cvs2/cvs_util/src/com/intellij/cvsSupport2/connections/ssh/SocksAuthenticatorManager.java @@ -74,9 +74,9 @@ public class SocksAuthenticatorManager { return super.getPasswordAuthentication(); } final RequestorType type = getRequestorType(); - if ((type == null) || (! RequestorType.PROXY.equals(type))) { + /*if ((type == null) || (! RequestorType.PROXY.equals(type))) { return super.getPasswordAuthentication(); - } + }*/ final String host = getRequestingHost(); final int port = getRequestingPort(); final Pair result = myKnown.get(new Pair(host, port)); -- 2.11.4.GIT