From: Fredrik Tolf Date: Mon, 28 Mar 2016 00:29:47 +0000 (+0200) Subject: python3: Fixed bug in sendreq. X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=ae53bd62c2f29027661811b9b7b4aa7c38e159a3 python3: Fixed bug in sendreq. --- diff --git a/python3/ashd/proto.py b/python3/ashd/proto.py index 7a078de..aa6b686 100644 --- a/python3/ashd/proto.py +++ b/python3/ashd/proto.py @@ -179,4 +179,4 @@ def sendreq(sock, req): data += key + b'\0' data += val + b'\0' data += b'\0' - htlib.sendfd(sock, req.sk.fileno(), data) + htlib.sendfd(sock, req.bsk.fileno(), data)