diff options
author | Andrea Shepard <andrea@torproject.org> | 2012-10-08 20:20:28 -0700 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2012-10-08 20:20:28 -0700 |
commit | ee4e88e4d9891a24334870616067d21580f95704 (patch) | |
tree | 8380218b969c16d883279536e780ea9038b0394b /src/or/channel.h | |
parent | 4686638743919513baa72001d4676996f5e53c14 (diff) | |
download | tor-ee4e88e4d9891a24334870616067d21580f95704.tar.gz tor-ee4e88e4d9891a24334870616067d21580f95704.zip |
s/cell_queue/incoming_queue/g in channel.c for consistency with outgoing_queue
Diffstat (limited to 'src/or/channel.h')
-rw-r--r-- | src/or/channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/channel.h b/src/or/channel.h index 8fb29d8508..696ae07c0f 100644 --- a/src/or/channel.h +++ b/src/or/channel.h @@ -132,7 +132,7 @@ struct channel_s { channel_t *next_with_same_id, *prev_with_same_id; /* List of incoming cells to handle */ - smartlist_t *cell_queue; + smartlist_t *incoming_queue; /* List of queued outgoing cells */ smartlist_t *outgoing_queue; |