Skip to content

Commit

Permalink
source is now a require parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jul 26, 2023
1 parent a9f4025 commit 3d1937f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xpra/server/proxy/proxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ def create_system_dir(self, sps) -> None:
with umask_context(0):
os.mkdir(d, SOCKET_DIR_MODE)
stat = os.stat(d)
# noinspection PyChainedComparisons
if xpra_group_id>=0 and stat.st_gid!=xpra_group_id:
os.lchown(d, stat.st_uid, xpra_group_id)
mode = os.stat(d).st_mode
Expand Down Expand Up @@ -313,7 +314,7 @@ def is_req(mode):
return
self._requests.add(proto)
#send a hello back and the client should then send its "shutdown-server" packet
capabilities = self.make_hello()
capabilities = self.make_hello(None)
proto.send_now(("hello", capabilities))
def force_exit_request_client():
try:
Expand Down

0 comments on commit 3d1937f

Please sign in to comment.