[or-cvs] Enforce coding style.
Nick Mathewson
nickm at seul.org
Tue Nov 30 02:26:44 UTC 2004
Update of /home/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv18970/src/or
Modified Files:
circuituse.c
Log Message:
Enforce coding style.
Index: circuituse.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/circuituse.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- circuituse.c 29 Nov 2004 22:25:29 -0000 1.29
+++ circuituse.c 30 Nov 2004 02:26:41 -0000 1.30
@@ -717,10 +717,10 @@
/* If we have specified a particular exit node for our
* connection, then be sure to open a circuit to that exit node.
*/
- if(desired_circuit_purpose == CIRCUIT_PURPOSE_C_GENERAL) {
+ if (desired_circuit_purpose == CIRCUIT_PURPOSE_C_GENERAL) {
if (conn->chosen_exit_name) {
exitname = tor_strdup(conn->chosen_exit_name);
- if(!router_get_by_nickname(exitname)) {
+ if (!router_get_by_nickname(exitname)) {
log_fn(LOG_WARN,"Requested exit point '%s' is not known. Closing.", exitname);
tor_free(exitname);
return -1;
More information about the tor-commits
mailing list