diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-17 21:22:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-17 21:22:18 +0000 |
commit | ebf13c62828e09da5e04472f97d8112cee1ee3cd (patch) | |
tree | ef1ef848ef038bac268fb13a2a3adf323e6656a4 /src | |
parent | 5643532bd9e90b45f4898d393cb1fdefd362f4a7 (diff) | |
download | tor-ebf13c62828e09da5e04472f97d8112cee1ee3cd.tar.gz tor-ebf13c62828e09da5e04472f97d8112cee1ee3cd.zip |
not not zero means zero
svn:r4587
Diffstat (limited to 'src')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/control.c b/src/or/control.c index cdb8b8ef65..55a46686bc 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -1426,7 +1426,7 @@ handle_control_extendcircuit(connection_t *conn, uint32_t len, goto done; } - if (!zero_circ) { + if (zero_circ) { /* start a new circuit */ circ = circuit_init(CIRCUIT_PURPOSE_C_GENERAL, 0, 0, 0); } |