[tor-commits] r24614: {arm} Hotfix for r24613 (release 1.4.2.3) (in arm/release/src: . interface/connections)
Damian Johnson
atagar1 at gmail.com
Wed Apr 13 14:58:56 UTC 2011
Author: atagar
Date: 2011-04-13 14:58:56 +0000 (Wed, 13 Apr 2011)
New Revision: 24614
Modified:
arm/release/src/interface/connections/connEntry.py
arm/release/src/version.py
Log:
Hotfix for r24613 (release 1.4.2.3)
Modified: arm/release/src/interface/connections/connEntry.py
===================================================================
--- arm/release/src/interface/connections/connEntry.py 2011-04-13 14:43:25 UTC (rev 24613)
+++ arm/release/src/interface/connections/connEntry.py 2011-04-13 14:58:56 UTC (rev 24614)
@@ -368,7 +368,7 @@
# known relay then it might be client traffic
conn = torTools.getConn()
- if "Guard" in conn.getMyFlags() or conn.getOption("BridgeRelay") == "1":
+ if "Guard" in conn.getMyFlags([]) or conn.getOption("BridgeRelay") == "1":
allMatches = conn.getRelayFingerprint(self.foreign.getIpAddr(), getAllMatches = True)
return allMatches == []
elif myType == Category.EXIT:
Modified: arm/release/src/version.py
===================================================================
--- arm/release/src/version.py 2011-04-13 14:43:25 UTC (rev 24613)
+++ arm/release/src/version.py 2011-04-13 14:58:56 UTC (rev 24614)
@@ -2,6 +2,6 @@
Provides arm's version and release date.
"""
-VERSION = '1.4.2.2'
-LAST_MODIFIED = "April 6, 2011"
+VERSION = '1.4.2.3'
+LAST_MODIFIED = "April 13, 2011"
More information about the tor-commits
mailing list