mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Fix some unused-argument warnings
This commit is contained in:
parent
bc9ade055e
commit
097286e476
@ -3503,12 +3503,16 @@ set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
|
|||||||
static int
|
static int
|
||||||
set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
|
set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
|
||||||
{
|
{
|
||||||
|
(void) conn;
|
||||||
|
(void) p;
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
add_unix_port(smartlist_t *ports, rend_service_port_config_t *p)
|
add_unix_port(smartlist_t *ports, rend_service_port_config_t *p)
|
||||||
{
|
{
|
||||||
|
(void) ports;
|
||||||
|
(void) p;
|
||||||
return -ENOSYS;
|
return -ENOSYS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user