[tor-commits] [tor/master] Fix warnings from lintChanges.py

2016-11-06 Thread nickm
commit add164aa41724ba6d66c961f37bd798e268062d2
Author: Nick Mathewson 
Date:   Sun Nov 6 16:39:46 2016 -0500

Fix warnings from lintChanges.py
---
 changes/bug19969 | 4 ++--
 changes/bug20472 | 3 ++-
 changes/bug20551 | 2 +-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/changes/bug19969 b/changes/bug19969
index 0bdd880..c760c6d 100644
--- a/changes/bug19969
+++ b/changes/bug19969
@@ -1,9 +1,9 @@
-  o Major bugfixes (client performance);
+  o Major bugfixes (client performance):
 - Clients now respond to new application stream requests when
   they arrive, rather than waiting up to one second before starting
   to handle them. Fixes part of bug 19969; bugfix on 0.2.8.1-alpha.
 
-  o Major bugfixes (clients on flaky network connections);
+  o Major bugfixes (clients on flaky network connections):
 - When Tor leaves standby because of a new application request, open
   circuits as needed to serve that request. Previously, we would
   potentially wait a very long time. Fixes part of bug 19969; bugfix
diff --git a/changes/bug20472 b/changes/bug20472
index b035037..4d90c39 100644
--- a/changes/bug20472
+++ b/changes/bug20472
@@ -1,4 +1,5 @@
   o Minor bugfixes (circuits):
 - Remove a BUG warning in circuit_pick_extend_handshake. Instead, assume
   all nodes support EXTEND2. Use ntor whenever a key is available.
-  Bugfix on commit 10aa913 from 19163 in 0.2.9.3-alpha. Fixes bug 20472.
+  Fixes bug 20472; bugfix on 0.2.9.3-alpha.
+
diff --git a/changes/bug20551 b/changes/bug20551
index 1e0746b..b7ec4ca 100644
--- a/changes/bug20551
+++ b/changes/bug20551
@@ -1,3 +1,3 @@
-  o Minor bugfixes (compilation);
+  o Minor bugfixes (compilation):
 - Fix implicit conversion warnings under OpenSSL 1.1.
   Fixes bug 20551; bugfix on 0.2.1.1-alpha.



___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits


[tor-commits] [tor/master] Fix warnings from lintChanges.py

2016-09-22 Thread nickm
commit 20ce9f23dc89847dfc3b70ff1cc9f7ec5bd5d644
Author: Nick Mathewson 
Date:   Thu Sep 22 08:48:05 2016 -0400

Fix warnings from lintChanges.py
---
 changes/19122|  5 +++--
 changes/19977|  4 ++--
 changes/bug19677 |  6 +++---
 changes/bug19767 |  4 +++-
 changes/feature17178 | 14 +++---
 changes/reject-tap   |  4 +++-
 6 files changed, 21 insertions(+), 16 deletions(-)

diff --git a/changes/19122 b/changes/19122
index cface80..80f38a6 100644
--- a/changes/19122
+++ b/changes/19122
@@ -1,3 +1,4 @@
   o Minor bugfixes (documentation):
-- man page incorrectly states the User option takes a UID when it really
-  takes a username. Fixes bug 19122.
+- Fix manual for the User option: it takes a username, not a UID.
+  Fixes bug 19122; bugfix on 0.0.2pre16 (the first version to have
+  a manpage!).
diff --git a/changes/19977 b/changes/19977
index 0ca1af1..0e55fbd 100644
--- a/changes/19977
+++ b/changes/19977
@@ -1,6 +1,6 @@
-  o Minor bugfixes (unit test)
+  o Minor bugfixes (unit tests):
 - Fix shared random unit test that was failing on big endian architecture
   due to internal representation of a integer copied to a buffer. The test
   is changed to take a full 32 bytes of data and use the output of a
   python script that make the COMMIT and REVEAL calculation according to
-  the spec.  Fixes #19977; bugfix on tor-0.2.9.1-alpha.
+  the spec.  Fixes bug 19977; bugfix on tor-0.2.9.1-alpha.
diff --git a/changes/bug19677 b/changes/bug19677
index e8ba3dd..2c84b7e 100644
--- a/changes/bug19677
+++ b/changes/bug19677
@@ -1,6 +1,6 @@
-  o Minor bug fixes (option parsing):
+  o Minor bugfixes (option parsing):
 - Count unix sockets when counting client listeners (SOCKS, Trans,
   NATD, and DNS). This has no user-visible behaviour changes: these
   options are set once, and never read.
-  Required for correct behaviour in ticket #17178.
-  Fixes bug #19677, patch by teor.
+  Required for correct behaviour in ticket 17178.
+  Fixes bug 19677; bugfix on 0.2.6.3-alpha.  Patch by teor.
diff --git a/changes/bug19767 b/changes/bug19767
index f0a010b..a534922 100644
--- a/changes/bug19767
+++ b/changes/bug19767
@@ -1,4 +1,6 @@
   o Minor bugfixes (compilation):
 - Always include orconfig.h before including any other C headers.
   Sometimes, it includes macros that affect the behavior of the
-  standard headers. Closes bug 19767.
+  standard headers. Fixes bug 19767; bugfix on 0.2.9.1-alpha (the first
+  version to use AC_USE_SYSTEM_EXTENSIONS).
+
diff --git a/changes/feature17178 b/changes/feature17178
index 172097c..d6a8e8d 100644
--- a/changes/feature17178
+++ b/changes/feature17178
@@ -8,23 +8,23 @@
   This is compatible with the existing hidden service implementation, and
   works on the current tor network without any changes to older relays or
   clients.
-  Implements proposal #260, completes ticket #17178. Patch by teor & asn.
+  Implements proposal 260, completes ticket 17178. Patch by teor and asn.
   o Minor features (Tor2web):
 - Make Tor2web clients respect ReachableAddresses.
   This feature was inadvertently enabled in 0.2.8.6, then removed
-  by bugfix #19973 on 0.2.8.7.
-  Implements feature #20034. Patch by teor.
+  by bugfix 19973 on 0.2.8.7.
+  Implements feature 20034. Patch by teor.
   o Minor bug fixes (Tor2web):
 - Prevent Tor2web clients running hidden services, these services are
   not anonymous due to the one-hop client paths.
-  Fixes bug #19678. Patch by teor.
+  Fixes bug 19678. Patch by teor.
   o Minor bug fixes (circuits):
 - Use CircuitBuildTimeout whenever LearnCircuitBuildTimeout is disabled.
-  Fixes bug #19678 in commit 5b0b51ca3 in 0.2.4.12-alpha. Patch by teor.
+  Fixes bug 19678; bugfix on commit 5b0b51ca3 in 0.2.4.12-alpha. Patch by 
teor.
   o Minor bug fixes (options):
 - Stop changing the configured value of UseEntryGuards on authorities
   and Tor2web clients.
-  Fixes bug #20074 in commits 51fc6799 in tor-0.1.1.16-rc and
+  Fixes bug 20074; bugfix on commits 51fc6799 in tor-0.1.1.16-rc and
   acda1735 in tor-0.2.4.3-alpha. Patch by teor.
 - Check the consistency of UseEntryGuards and EntryNodes more reliably.
-  Fixes bug #20074 in commit 686aaa5c in tor-0.2.4.12-alpha. Patch by teor.
+  Fixes bug 20074; bugfix on commit 686aaa5c in tor-0.2.4.12-alpha. Patch 
by teor.
diff --git a/changes/reject-tap b/changes/reject-tap
index 8e616de..dad554f 100644
--- a/changes/reject-tap
+++ b/changes/reject-tap
@@ -1,4 +1,4 @@
-  o Major bug fixes (circuit building):
+  o Major features (circuit building, security):
 - Tor authorities, relays, and clients only use ntor, except for
   rare cases in the hidden service protocol.
 - Authorities, relays and clients specifically check that each
@@ -10,6 +10,8 @@
   mirrors, or as introduction or rende

[tor-commits] [tor/master] Fix warnings from lintChanges.py

2015-02-17 Thread nickm
commit b89854ee1717d6f15bca6cb1daeef853ba60dd6d
Author: Nick Mathewson 
Date:   Tue Feb 17 10:10:43 2015 -0500

Fix warnings from lintChanges.py
---
 changes/bug14184 |4 ++--
 changes/bug14819 |2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/changes/bug14184 b/changes/bug14184
index ed3d760..990d4bf 100644
--- a/changes/bug14184
+++ b/changes/bug14184
@@ -1,5 +1,5 @@
   o Minor bugfixes:
 - On the control port, the "entry-guards" command was reporting an "up"
-  status for a relay that was actually down. This fix check if
+  status for a relay that was actually down. This fixes the check if
   "unreachable_since" is set and if so reports the "down" status. Fixes
-  bug 14184.
+  bug 14184; bugfix on 0.1.2.2-alpha.
diff --git a/changes/bug14819 b/changes/bug14819
index 7b47771..d00a78d 100644
--- a/changes/bug14819
+++ b/changes/bug14819
@@ -1,5 +1,5 @@
   o Minor bugfixes
 - Remove the --disable-threads configure option again. It was accidentally
   partially re-introduced in 29ac883606d6d5ebfdcc2efceb2b4b60ee6a8916.
-  Fixes bug 13819; bugfix on 0.2.6.2-alpha.
+  Fixes bug 14819; bugfix on 0.2.6.2-alpha.
 

___
tor-commits mailing list
tor-commits@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits