diff options
author | Roger Dingledine <arma@torproject.org> | 2004-04-03 00:55:53 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-04-03 00:55:53 +0000 |
commit | bbc94849576878955b58e1297e43d2b83db576cb (patch) | |
tree | 03235d3f8e72cdd22bc75805a2a7bcf2811a315d /src/or/circuit.c | |
parent | 06c812c2decf92bbd23e7750a98b4ae6802c3836 (diff) | |
download | tor-bbc94849576878955b58e1297e43d2b83db576cb.tar tor-bbc94849576878955b58e1297e43d2b83db576cb.tar.gz |
fix some bugs; more remain
svn:r1450
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r-- | src/or/circuit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index cd87d59c7..81944fd03 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -334,7 +334,7 @@ circuit_t *circuit_get_newest(connection_t *conn, * the list. */ circuit_t *circuit_get_next_by_pk_and_purpose(circuit_t *start, - const char *digest, int purpose) + const char *digest, uint8_t purpose) { circuit_t *circ; if (start == NULL) |