[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r8644: whitespace fixes; add changelog for last commit. (in tor/trunk: . contrib src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r8644: whitespace fixes; add changelog for last commit. (in tor/trunk: . contrib src/or)
- From: nickm@xxxxxxxx
- Date: Sat, 7 Oct 2006 20:33:44 -0400 (EDT)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Sat, 07 Oct 2006 20:33:52 -0400
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
Author: nickm
Date: 2006-10-07 20:33:43 -0400 (Sat, 07 Oct 2006)
New Revision: 8644
Modified:
tor/trunk/
tor/trunk/ChangeLog
tor/trunk/contrib/checkSpace.pl
tor/trunk/src/or/circuitbuild.c
tor/trunk/src/or/connection_or.c
Log:
r8933@totoro: nickm | 2006-10-07 20:33:16 -0400
whitespace fixes; add changelog for last commit.
Property changes on: tor/trunk
___________________________________________________________________
svk:merge ticket from /tor/trunk [r8933] on 96637b51-b116-0410-a10e-9941ebb49b64
Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog 2006-10-08 00:33:35 UTC (rev 8643)
+++ tor/trunk/ChangeLog 2006-10-08 00:33:43 UTC (rev 8644)
@@ -1,3 +1,10 @@
+Changes in version 0.1.2.3-alpha - 2006-10-??
+
+ o Minor bugfixes:
+ - Change NT service functions to be loaded on demand. This lets us
+ build with mingw without breaking Tor for Windows 98 users.
+
+
Changes in version 0.1.2.2-alpha - 2006-10-07
o Major features:
- Make our async eventdns library on-by-default for Tor servers,
Modified: tor/trunk/contrib/checkSpace.pl
===================================================================
--- tor/trunk/contrib/checkSpace.pl 2006-10-08 00:33:35 UTC (rev 8643)
+++ tor/trunk/contrib/checkSpace.pl 2006-10-08 00:33:43 UTC (rev 8644)
@@ -83,7 +83,7 @@
if (/(\w+)\s\(/) {
if ($1 ne "if" and $1 ne "while" and $1 ne "for" and
$1 ne "switch" and $1 ne "return" and $1 ne "int" and
- $1 ne "elsif" and
+ $1 ne "elsif" and $1 ne "WINAPI" and
$1 ne "void" and $1 ne "__attribute__") {
print " fn ():$fn:$.\n";
}
Modified: tor/trunk/src/or/circuitbuild.c
===================================================================
--- tor/trunk/src/or/circuitbuild.c 2006-10-08 00:33:35 UTC (rev 8643)
+++ tor/trunk/src/or/circuitbuild.c 2006-10-08 00:33:43 UTC (rev 8644)
@@ -95,7 +95,8 @@
* the currently built elements of circuit_t. If <b>verbose</b> is true, also
* list information about link status in a more verbose format using spaces.
* If <b>verbose_names</b> is false, give nicknames for Named routers and hex
- * digests for others; if <b>verbose_names</b> is true,
+ * digests for others; if <b>verbose_names</b> is true, use $DIGEST=Name style
+ * names.
*/
static char *
circuit_list_path_impl(origin_circuit_t *circ, int verbose, int verbose_names)
Modified: tor/trunk/src/or/connection_or.c
===================================================================
--- tor/trunk/src/or/connection_or.c 2006-10-08 00:33:35 UTC (rev 8643)
+++ tor/trunk/src/or/connection_or.c 2006-10-08 00:33:43 UTC (rev 8644)
@@ -623,7 +623,7 @@
"Identity key not as expected for router at %s:%d: wanted %s "
"but got %s",
conn->_base.address, conn->_base.port, expected, seen);
- entry_guard_register_connect_status(conn->identity_digest, 0, time(NULL));
+ entry_guard_register_connect_status(conn->identity_digest,0,time(NULL));
router_set_status(conn->identity_digest, 0);
control_event_or_conn_status(conn, OR_CONN_EVENT_FAILED);
as_advertised = 0;