c6ca5b8f13
GitOrigin-RevId: e4d49de45a3b5dbcb881656b4e3986e666141ea9
13 lines
438 B
Diff
13 lines
438 B
Diff
diff --git a/Xlib/xauth.py b/Xlib/xauth.py
|
|
index 2ed7dd5..303bd49 100644
|
|
--- a/Xlib/xauth.py
|
|
+++ b/Xlib/xauth.py
|
|
@@ -120,6 +120,8 @@ class Xauthority(object):
|
|
matches = {}
|
|
|
|
for efam, eaddr, enum, ename, edata in self.entries:
|
|
+ if enum == b'' and ename not in matches:
|
|
+ enum = num
|
|
if efam == family and eaddr == address and num == enum:
|
|
matches[ename] = edata
|
|
|