aboutsummaryrefslogtreecommitdiff
path: root/src/or/connection_edge.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-11-22 23:28:26 +0000
committerNick Mathewson <nickm@torproject.org>2004-11-22 23:28:26 +0000
commit22dba27d8dd55e3494775b9241e258e494caf5d3 (patch)
tree8e3e1a756c6efc65d8211e884bf5c5b9dd60dea1 /src/or/connection_edge.c
parentfe32c2d1412e7a3906fa4f0ae0f99f12de5b882b (diff)
downloadtor-22dba27d8dd55e3494775b9241e258e494caf5d3.tar.gz
tor-22dba27d8dd55e3494775b9241e258e494caf5d3.zip
Normalize a few more kinds of whitespace. We now dislike:
- func (args) - if (x){ This doesn't normalize if(x), for(x); while(x), and friends. svn:r2943
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r--src/or/connection_edge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c
index be3b07a25f..4ba528c488 100644
--- a/src/or/connection_edge.c
+++ b/src/or/connection_edge.c
@@ -761,7 +761,7 @@ int connection_exit_begin_conn(cell_t *cell, circuit_t *circ) {
log_fn(LOG_WARN,"relay begin cell has no \\0. Dropping.");
return 0;
}
- if (parse_addr_port(cell->payload+RELAY_HEADER_SIZE, &address, NULL,&port)<0){
+ if (parse_addr_port(cell->payload+RELAY_HEADER_SIZE,&address,NULL,&port)<0) {
log_fn(LOG_WARN,"Unable to parse addr:port in relay begin cell. Dropping.");
return 0;
}