diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-07-26 19:07:37 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-07-26 19:07:37 +0000 |
commit | ec82db6995e260b9400ded5a767e1f9c60a3cb18 (patch) | |
tree | 889f533f374f4c38c4066c9f428d994d2727c5c0 /src/or/circuitbuild.c | |
parent | 4ff4577beb7b7aa286059a5070b23357fff48bf3 (diff) | |
download | tor-ec82db6995e260b9400ded5a767e1f9c60a3cb18.tar.gz tor-ec82db6995e260b9400ded5a767e1f9c60a3cb18.zip |
r6909@Kushana: nickm | 2006-07-26 13:05:58 -0400
Clean up wide lines from last patch.
svn:r6907
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 7a256371ba..d2973203ac 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -692,7 +692,8 @@ circuit_extend(cell_t *cell, circuit_t *circ) circ->n_conn = n_conn; memcpy(circ->n_conn_id_digest, n_conn->identity_digest, DIGEST_LEN); - log_debug(LD_CIRC,"n_conn is %s:%u",n_conn->_base.address,n_conn->_base.port); + log_debug(LD_CIRC,"n_conn is %s:%u", + n_conn->_base.address,n_conn->_base.port); if (circuit_deliver_create_cell(circ, CELL_CREATE, onionskin) < 0) return -1; |