/src/libexec/identd/ |
identd.c | 584 int error, maxs, *s, *socks; local in function:socketsetup 599 for (maxs = 0, res = res0; res != NULL; res = res->ai_next) 600 maxs++; 602 socks = malloc((maxs + 1) * sizeof(int));
|
/src/usr.sbin/syslogd/ |
tls.c | 822 int error, maxs; local in function:socksetup_tls 844 for (maxs = 0, r = res; r; r = r->ai_next, maxs++) 846 socks = malloc((maxs+1) * sizeof(*socks));
|
syslogd.c | 4125 int error, maxs; local in function:socksetup 4144 for (maxs = 0, r = res; r; r = r->ai_next, maxs++) 4146 socks = calloc(maxs+1, sizeof(*socks));
|