summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Python Modules Team <python-modules-team@lists.alioth.debian.org>2020-09-19 13:32:58 +0300
committerAndrej Shadura <andrewsh@debian.org>2020-09-19 13:32:58 +0300
commitac77c41a2b701b270d923459915f57bc89d7536c (patch)
treebc27304764331e7e7675b76db1dd5a03cead528a
parentd96979229e656179e33e62642b924cec39e56ac7 (diff)
fix-ssh-tunnel-auth
Gbp-Pq: Name fix-ssh-tunnel-auth.patch
-rw-r--r--Xlib/support/unix_connect.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Xlib/support/unix_connect.py b/Xlib/support/unix_connect.py
index 4112c0f..f8561b7 100644
--- a/Xlib/support/unix_connect.py
+++ b/Xlib/support/unix_connect.py
@@ -201,6 +201,14 @@ def old_get_auth(sock, dname, host, dno):
except os.error:
pass
+ if not auth_data and host=='localhost':
+ # 127.0.0.1 counts as FamilyLocal, not FamilyInternet
+ # See Xtransutil.c:ConvertAddress.
+ # There might be more ways to spell 127.0.0.1 but
+ # 'localhost', yet this code fixes a the case of
+ # OpenSSH tunneling X.
+ return get_auth('unix:%d' % dno, 'unix', dno)
+
return auth_name, auth_data
get_auth = new_get_auth