Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: <forestatq@us...> - 2013-03-12 13:22:23
|
Revision: 162 http://python-xlib.svn.sourceforge.net/python-xlib/?rev=162&view=rev Author: forestatq Date: 2013-03-12 13:22:17 +0000 (Tue, 12 Mar 2013) Log Message: ----------- security: Fix incorrect reply field order. Somehow this worked on 32-bit systems but not 64-bit systems. Modified Paths: -------------- trunk/Xlib/ext/security.py Property Changed: ---------------- trunk/ Modified: trunk/Xlib/ext/security.py =================================================================== --- trunk/Xlib/ext/security.py 2012-12-09 16:05:12 UTC (rev 161) +++ trunk/Xlib/ext/security.py 2013-03-12 13:22:17 UTC (rev 162) @@ -1,6 +1,6 @@ # Xlib.ext.security -- SECURITY extension module # -# Copyright (C) 2010-2011 Outpost Embedded, LLC +# Copyright (C) 2010-2013 Outpost Embedded, LLC # Forest Bond <forest.bond@...> # # This program is free software; you can redistribute it and/or modify @@ -80,8 +80,8 @@ rq.Card16('sequence_number'), rq.ReplyLength(), AUTHID('authid'), + rq.LengthOf('auth_data_return', 2), rq.Pad(18), - rq.LengthOf('auth_data_return', 2), rq.String8('auth_data_return') ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |