diff options
author | Andrea Shepard <andrea@persephoneslair.org> | 2012-09-02 21:13:25 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2012-10-08 03:06:09 -0700 |
commit | 8b14db9628f0e8982e894034e86c8efdd78cff32 (patch) | |
tree | 69ca4454bdb0c0916e693e72e768e250563643ab /src/or | |
parent | 77dac97354974e8a819d8e35ad4e7a76199999b4 (diff) | |
download | tor-8b14db9628f0e8982e894034e86c8efdd78cff32.tar tor-8b14db9628f0e8982e894034e86c8efdd78cff32.tar.gz |
Switch onion.c over to channel_t
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/onion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index ff1556c3e..17d8e777a 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -106,7 +106,7 @@ onion_next_task(char **onionskin_out) return NULL; /* no onions pending, we're done */ tor_assert(ol_list->circ); - tor_assert(ol_list->circ->p_conn); /* make sure it's still valid */ + tor_assert(ol_list->circ->p_chan); /* make sure it's still valid */ tor_assert(ol_length > 0); circ = ol_list->circ; *onionskin_out = ol_list->onionskin; |