Skip to content

Commit

Permalink
Add missing %s in debug message (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhael-Danilov authored May 29, 2023
1 parent b455a03 commit 785b646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindToInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 785b646

Please # to comment.