X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fmeta.c;h=d44b2dd49a7212cf3e5fd02c4c652d78ef5b07dc;hb=e29e0fee8812851473bcf24324a15cbf3cc854a0;hp=a272baf57e10da72687fed8c7aa91223e626bccc;hpb=19be9cf7150858311f7898fa3fb525d692d02f64;p=tinc diff --git a/src/meta.c b/src/meta.c index a272baf5..d44b2dd4 100644 --- a/src/meta.c +++ b/src/meta.c @@ -31,7 +31,7 @@ #include "utils.h" #include "xalloc.h" -bool send_meta_sptps(void *handle, const char *buffer, size_t length) { +bool send_meta_sptps(void *handle, uint8_t type, const char *buffer, size_t length) { connection_t *c = handle; if(!c) { @@ -39,7 +39,7 @@ bool send_meta_sptps(void *handle, const char *buffer, size_t length) { abort(); } - logger(DEBUG_META, LOG_DEBUG, "send_meta_sptps(%s, %p, %zu)", c->name, buffer, length); + logger(DEBUG_META, LOG_DEBUG, "send_meta_sptps(%s, %p, %d)", c->name, buffer, (int)length); buffer_add(&c->outbuf, buffer, length); event_add(&c->outevent, NULL);