[tor-commits] r24562: {arm} Hotfix to pick up r24560 (crashing issue when there's extra (in arm/release: . src src/util)

Damian Johnson atagar1 at gmail.com
Tue Apr 5 02:44:58 UTC 2011


Author: atagar
Date: 2011-04-05 02:44:58 +0000 (Tue, 05 Apr 2011)
New Revision: 24562

Modified:
   arm/release/ChangeLog
   arm/release/src/util/torTools.py
   arm/release/src/version.py
Log:
Hotfix to pick up r24560 (crashing issue when there's extra spacing in the HiddenServicePort config option)



Modified: arm/release/ChangeLog
===================================================================
--- arm/release/ChangeLog	2011-04-05 02:42:18 UTC (rev 24561)
+++ arm/release/ChangeLog	2011-04-05 02:44:58 UTC (rev 24562)
@@ -1,6 +1,6 @@
 CHANGE LOG
 
-4/4/11 - version 1.4.2
+4/4/11 - version 1.4.2 (r24555)
 This release chiefly consists of a fully reimplemented connection panel. Besides being a sane, maintainable implementation this includes numerous new features and improvements like full circuit paths, applications involved for local connections, and better type identification.
 
     * added: full rewrite of the connection panel, providing:
@@ -47,6 +47,7 @@
     * fix: the 'startup.dataDirectory' config option was being ignored
     * fix: recognizing the proper private ip ranges of the 172.* block
     * fix: missing 'is default' option from config sort ordering
+    * fix (4/4/11): hidden service parsing issue when there's multiple spaces in the HiddenServicePort opition (caught by Nicolas Pouillard)
 
 1/7/11 - version 1.4.1 (r24054)
 Platform specific enhancements including BSD compatibility and vastly improved performance on Linux.
@@ -89,6 +90,11 @@
     * fix: connection resolution wasn't finding results if tor was running under a different name
     * fix: brought all Linux connection resolvers into parity (established tcp connections only)
     * fix: commands with quoted pipes were being mis-parsed by the sysTools' call function
+    * fix (1/11/11, r24064): including platform, python version, and arm/tor configurations in debug dumps
+    * fix (1/11/11, r24064): properly parse the ps field when displaying decimal seconds (patch by Fabian)
+    * fix (1/11/11, r24064): error when initial resource lookups fail (caught by Trystero)
+    * fix (1/12/11, r24075): decimal seconds in the ps uptime field were being misparsed (patch by Fabian)
+    * fix (1/15/11, r24092): adding a --docPath argument to help Gentoo ebuilds (https://bugs.gentoo.org/349792)
 
 11/27/10 - version 1.4.0 (r23873)
 Introducing a new page for managing tor's configuration, along with several other improvements.

Modified: arm/release/src/util/torTools.py
===================================================================
--- arm/release/src/util/torTools.py	2011-04-05 02:42:18 UTC (rev 24561)
+++ arm/release/src/util/torTools.py	2011-04-05 02:44:58 UTC (rev 24562)
@@ -1750,7 +1750,7 @@
             
             if " " in hsEntry:
               # parses the target, checking if it's a port or IP:Port combination
-              hsTarget = hsEntry.split(" ")[1]
+              hsTarget = hsEntry.split()[1]
               
               if ":" in hsTarget:
                 hsPort = hsTarget.split(":")[1] # target is the IP:Port

Modified: arm/release/src/version.py
===================================================================
--- arm/release/src/version.py	2011-04-05 02:42:18 UTC (rev 24561)
+++ arm/release/src/version.py	2011-04-05 02:44:58 UTC (rev 24562)
@@ -2,6 +2,6 @@
 Provides arm's version and release date.
 """
 
-VERSION = '1.4.2'
+VERSION = '1.4.2.1'
 LAST_MODIFIED = "April 4, 2011"
 



More information about the tor-commits mailing list