aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-01-30 14:47:56 -0500
committerNick Mathewson <nickm@torproject.org>2015-01-30 14:47:56 -0500
commit097286e47665a32e54249f809c23e190be9d57e8 (patch)
treea3b2197b1b8fe409faa3c6c36f395e3d5dc293cb /src/or/rendservice.c
parentbc9ade055e7a256e5d8a5be876806a8dd0bca7af (diff)
downloadtor-097286e47665a32e54249f809c23e190be9d57e8.tar.gz
tor-097286e47665a32e54249f809c23e190be9d57e8.zip
Fix some unused-argument warnings
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 28d922ab2c..6ae569cd8f 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -3503,12 +3503,16 @@ set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
static int
set_unix_port(edge_connection_t *conn, rend_service_port_config_t *p)
{
+ (void) conn;
+ (void) p;
return -ENOSYS;
}
static int
add_unix_port(smartlist_t *ports, rend_service_port_config_t *p)
{
+ (void) ports;
+ (void) p;
return -ENOSYS;
}