]> www.tinc-vpn.org Git - tinc/blobdiff - src/protocol_misc.c
Fix all warnings when compiling with -Wall -W -pedantic.
[tinc] / src / protocol_misc.c
index d808d73fa6b6c5473adce1dd485db3a48c096efb..a4fcd6f7ba7871d706783198cea9203c5450cff2 100644 (file)
@@ -44,6 +44,8 @@ bool send_termreq(connection_t *c) {
 }
 
 bool termreq_h(connection_t *c, const char *request) {
+       (void)c;
+       (void)request;
        return false;
 }
 
@@ -55,6 +57,7 @@ bool send_ping(connection_t *c) {
 }
 
 bool ping_h(connection_t *c, const char *request) {
+       (void)request;
        return send_pong(c);
 }
 
@@ -63,6 +66,7 @@ bool send_pong(connection_t *c) {
 }
 
 bool pong_h(connection_t *c, const char *request) {
+       (void)request;
        c->status.pinged = false;
 
        /* Successful connection, reset timeout if this is an outgoing connection. */