aboutsummaryrefslogtreecommitdiff
path: root/src/core/or/channel.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-11-16 15:27:08 -0500
committerNick Mathewson <nickm@torproject.org>2019-11-16 15:27:08 -0500
commit59ba61a69050edacb560a9fa6ad302346e14095e (patch)
tree9290f064da2e4dba2c062a10388bd6d86d08574e /src/core/or/channel.c
parentcc271afedabb3e22bfde23292eb79744554b8005 (diff)
downloadtor-59ba61a69050edacb560a9fa6ad302346e14095e.tar.gz
tor-59ba61a69050edacb560a9fa6ad302346e14095e.zip
Make structs declared by tor_queues.h macros also follow naming rules
Diffstat (limited to 'src/core/or/channel.c')
-rw-r--r--src/core/or/channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/or/channel.c b/src/core/or/channel.c
index 31a33325fa..1641a96800 100644
--- a/src/core/or/channel.c
+++ b/src/core/or/channel.c
@@ -143,7 +143,7 @@ static HT_HEAD(channel_idmap, channel_idmap_entry_t) channel_identity_map =
typedef struct channel_idmap_entry_t {
HT_ENTRY(channel_idmap_entry_t) node;
uint8_t digest[DIGEST_LEN];
- TOR_LIST_HEAD(channel_list_s, channel_t) channel_list;
+ TOR_LIST_HEAD(channel_list_t, channel_t) channel_list;
} channel_idmap_entry_t;
static inline unsigned
@@ -3406,7 +3406,7 @@ channel_sort_by_ed25519_identity(const void **a_, const void **b_)
* all of which MUST have the same RSA ID. (They MAY have different
* Ed25519 IDs.) */
static void
-channel_rsa_id_group_set_badness(struct channel_list_s *lst, int force)
+channel_rsa_id_group_set_badness(struct channel_list_t *lst, int force)
{
/*XXXX This function should really be about channels. 15056 */
channel_t *chan = TOR_LIST_FIRST(lst);