[Zope-Checkins] CVS: ZODB3/ZEO/zrpc - smac.py:1.38.6.5

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


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

Modified Files:
      Tag: Zope-2_7-branch
	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.38.6.4 => 1.38.6.5 ===
--- ZODB3/ZEO/zrpc/smac.py:1.38.6.4	Thu Dec 18 21:14:54 2003
+++ ZODB3/ZEO/zrpc/smac.py	Mon Dec 22 14:56:21 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 Zope-Checkins mailing list