From 785b646713ec196c54e834be795acef6ccfbce38 Mon Sep 17 00:00:00 2001 From: Mikhael-Danilov Date: Mon, 29 May 2023 11:24:30 +0300 Subject: [PATCH] Add missing %s in debug message (#10) --- bindToInterface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindToInterface.c b/bindToInterface.c index 9c24285..4354b3e 100644 --- a/bindToInterface.c +++ b/bindToInterface.c @@ -67,7 +67,7 @@ int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen) { IPExcluded = true; #ifdef DEBUG - printf("IP %s excluded by IP-List, not binding to interface \n", dest, getenv("BIND_INTERFACE")); + printf("IP %s excluded by IP-List, not binding to interface %s\n", dest, getenv("BIND_INTERFACE")); #endif break; }