From: Nick Mathewson Date: Thu, 12 Jul 2018 14:35:29 +0000 (-0400) Subject: Remove a redundant typedef in addr_policy_st.h X-Git-Tag: tor-0.3.5.1-alpha~219 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ac87a430f9eddf138b9f686eea1e851f522cead;p=thirdparty%2Ftor.git Remove a redundant typedef in addr_policy_st.h --- diff --git a/src/core/or/addr_policy_st.h b/src/core/or/addr_policy_st.h index be3e9d8f01..222a067252 100644 --- a/src/core/or/addr_policy_st.h +++ b/src/core/or/addr_policy_st.h @@ -18,7 +18,7 @@ typedef enum { #define addr_policy_action_bitfield_t ENUM_BF(addr_policy_action_t) /** A reference-counted address policy rule. */ -typedef struct addr_policy_t { +struct addr_policy_t { int refcnt; /**< Reference count */ /** What to do when the policy matches.*/ addr_policy_action_bitfield_t policy_type:2; @@ -41,6 +41,6 @@ typedef struct addr_policy_t { tor_addr_t addr; uint16_t prt_min; /**< Lowest port number to accept/reject. */ uint16_t prt_max; /**< Highest port number to accept/reject. */ -} addr_policy_t; +}; #endif