Description: Use ellipsis in logging functions when not in DEBUG_MODE
Bug-Debian: https://bugs.debian.org/1096818
Author: Teemu Hukkanen <tjhukkan@iki.fi>
Forwarded: no
---
--- httptunnel-3.3+dfsg.orig/common.h
+++ httptunnel-3.3+dfsg/common.h
@@ -50,9 +50,9 @@ extern void log_debug (char *fmt0, ...);
 extern void log_verbose (char *fmt0, ...);
 extern void log_annoying (char *fmt0, ...);
 #else
-static inline void log_debug () {}
-static inline void log_verbose () {}
-static inline void log_annoying () {}
+static inline void log_debug (...) {}
+static inline void log_verbose (...) {}
+static inline void log_annoying (...) {}
 #endif
 
 extern int server_socket (struct in_addr addr, int port, int backlog);
