Add missing %s in debug message (#10)

This commit is contained in:
Mikhael-Danilov 2023-05-29 11:24:30 +03:00 committed by GitHub
parent b455a031b5
commit 785b646713
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}