[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - smac.py:1.44

Christian Reis kiko at async.com.br
Mon Dec 22 14:56:23 EST 2003


Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv1751

Modified Files:
	smac.py 
Log Message:
Fixing __has_mac's default to 0 instead of True (using 0 for
consistency's sake, since we use a 0 for the state flag as well)


=== ZODB3/ZEO/zrpc/smac.py 1.43 => 1.44 ===
--- ZODB3/ZEO/zrpc/smac.py:1.43	Wed Dec 17 19:21:53 2003
+++ ZODB3/ZEO/zrpc/smac.py	Mon Dec 22 14:56:22 2003
@@ -95,7 +95,7 @@
         # The next thing read is always of length __msg_size.
         # The state alternates between 0 and 1.
         self.__state = 0
-        self.__has_mac = True
+        self.__has_mac = 0
         self.__msg_size = 4
         self.__output_lock = threading.Lock() # Protects __output
         self.__output = []




More information about the Zodb-checkins mailing list