mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 14:23:30 +01:00
Use tor_assert, not assert.
This commit is contained in:
parent
bd45f7c668
commit
e8d7953c61
@ -1970,7 +1970,7 @@ static void
|
|||||||
router_check_descriptor_address_port_consistency(uint32_t ipv4h_desc_addr,
|
router_check_descriptor_address_port_consistency(uint32_t ipv4h_desc_addr,
|
||||||
int listener_type)
|
int listener_type)
|
||||||
{
|
{
|
||||||
assert(listener_type == CONN_TYPE_OR_LISTENER ||
|
tor_assert(listener_type == CONN_TYPE_OR_LISTENER ||
|
||||||
listener_type == CONN_TYPE_DIR_LISTENER);
|
listener_type == CONN_TYPE_DIR_LISTENER);
|
||||||
|
|
||||||
/* The first advertised Port may be the magic constant CFG_AUTO_PORT.
|
/* The first advertised Port may be the magic constant CFG_AUTO_PORT.
|
||||||
@ -1985,7 +1985,7 @@ router_check_descriptor_address_port_consistency(uint32_t ipv4h_desc_addr,
|
|||||||
AF_INET);
|
AF_INET);
|
||||||
/* If we're building a descriptor with no advertised address,
|
/* If we're building a descriptor with no advertised address,
|
||||||
* something is terribly wrong. */
|
* something is terribly wrong. */
|
||||||
assert(port_addr);
|
tor_assert(port_addr);
|
||||||
|
|
||||||
tor_addr_t desc_addr;
|
tor_addr_t desc_addr;
|
||||||
char port_addr_str[TOR_ADDR_BUF_LEN];
|
char port_addr_str[TOR_ADDR_BUF_LEN];
|
||||||
|
Loading…
Reference in New Issue
Block a user