Removed some debug printfs.

FossilOrigin-Name: f2c66375092efbd30f50b3ec0ab405e4e38c4f2d3eaa997fc6dc04f4f118c444
This commit is contained in:
7u83@mail.ru
2016-03-07 07:12:04 +00:00
parent 49745425d4
commit 583c06d917
3 changed files with 9 additions and 5 deletions

View File

@ -390,7 +390,7 @@ static int init_listen_addrs()
if (ifa->ifa_addr->sa_family == AF_INET && conf_ipv4) {
sock_addrtostr(ifa->ifa_addr, str, 100,0);
printf("The converter has %s\n",str);
// printf("The converter has %s\n",str);
// *strchr(str, ':') = 0;
conf_listen_addrs[ctr] =
(char *) cw_setstr((uint8_t **) & conf_listen_addrs[ctr],
@ -402,7 +402,7 @@ static int init_listen_addrs()
if (ifa->ifa_addr->sa_family == AF_INET6 && conf_ipv6) {
sock_addrtostr(ifa->ifa_addr, str, 100,0);
printf("The converter has %s\n",str);
// printf("The converter has %s\n",str);
if (strncmp(str, "fe80:", 5) == 0) {
strcat(str, "%");