crypto/heimdal/lib/krb5/krbhst.c
1000
handle->index = &handle->hosts;
crypto/heimdal/lib/krb5/krbhst.c
1011
for (h = handle->hosts; h != NULL; h = next) {
crypto/heimdal/lib/krb5/krbhst.c
167
struct krb5_krbhst_info *hosts, **index, **end;
crypto/heimdal/lib/krb5/krbhst.c
173
return kd->index == &kd->hosts;
crypto/heimdal/lib/krb5/krbhst.c
300
for(h = kd->hosts; h; h = h->next)
crypto/heimdal/lib/krb5/krbhst.c
896
kd->end = kd->index = &kd->hosts;
crypto/openssh/clientloop.c
2070
hostspec_is_complex(const char *hosts)
crypto/openssh/clientloop.c
2075
if (strchr(hosts, '*') != NULL || strchr(hosts, '?') != NULL)
crypto/openssh/clientloop.c
2078
if ((cp = strchr(hosts, ',')) == NULL)
crypto/openssh/clientloop.c
2121
if (ctx->ip_str != NULL && strchr(l->hosts, ',') != NULL) {
crypto/openssh/clientloop.c
2140
if (hostspec_is_complex(l->hosts)) {
crypto/openssh/clientloop.c
2187
hashed ? "[HASHED]" : l->hosts);
crypto/openssh/hostfile.c
813
lineinfo.hosts = cp;
crypto/openssh/hostfile.c
818
if ((s = match_maybe_hashed(host, lineinfo.hosts,
crypto/openssh/hostfile.c
821
path, linenum, lineinfo.hosts);
crypto/openssh/hostfile.c
831
if ((s = match_maybe_hashed(ip, lineinfo.hosts,
crypto/openssh/hostfile.c
835
lineinfo.hosts);
crypto/openssh/hostfile.h
98
const char *hosts; /* Raw hosts text, may be hashed or list multiple */
crypto/openssh/regress/unittests/hostkeys/test_iterate.c
130
if (expected->l.hosts != NULL)
crypto/openssh/regress/unittests/hostkeys/test_iterate.c
131
ASSERT_STRING_EQ(l->hosts, expected->l.hosts);
crypto/openssh/ssh-keygen.c
1222
char *hashed, *cp, *hosts, *ohosts;
crypto/openssh/ssh-keygen.c
1223
int has_wild = l->hosts && strcspn(l->hosts, "*?!") != strlen(l->hosts);
crypto/openssh/ssh-keygen.c
1224
int was_hashed = l->hosts && l->hosts[0] == HASH_DELIM;
crypto/openssh/ssh-keygen.c
1238
l->linenum, l->hosts);
crypto/openssh/ssh-keygen.c
1246
ohosts = hosts = xstrdup(l->hosts);
crypto/openssh/ssh-keygen.c
1247
while ((cp = strsep(&hosts, ",")) != NULL && *cp != '\0') {
crypto/openssh/ssh-keyscan.c
345
char *hosts = c->c_output_name ? c->c_output_name : c->c_name;
crypto/openssh/ssh-keyscan.c
351
keyprint_one(hosts, key);
crypto/openssh/ssh-keyscan.c
354
ohosts = hosts = xstrdup(hosts);
crypto/openssh/ssh-keyscan.c
355
while ((host = strsep(&hosts, ",")) != NULL)
crypto/openssh/sshconnect.c
773
strncmp(l->hosts, HASH_MAGIC, strlen(HASH_MAGIC)) == 0 ?
crypto/openssh/sshconnect.c
774
"[hashed name]" : l->hosts);
crypto/openssl/crypto/x509/x509_local.h
32
STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */
crypto/openssl/crypto/x509/x509_vfy.c
905
int n = sk_OPENSSL_STRING_num(vpm->hosts);
crypto/openssl/crypto/x509/x509_vfy.c
913
name = sk_OPENSSL_STRING_value(vpm->hosts, i);
crypto/openssl/crypto/x509/x509_vfy.c
925
if (vpm->hosts != NULL && check_hosts(x, vpm) <= 0) {
crypto/openssl/crypto/x509/x509_vpm.c
100
sk_OPENSSL_STRING_pop_free(param->hosts, str_free);
crypto/openssl/crypto/x509/x509_vpm.c
194
if (test_x509_verify_param_copy(hosts, NULL)) {
crypto/openssl/crypto/x509/x509_vpm.c
195
sk_OPENSSL_STRING_pop_free(dest->hosts, str_free);
crypto/openssl/crypto/x509/x509_vpm.c
196
dest->hosts = NULL;
crypto/openssl/crypto/x509/x509_vpm.c
197
if (src->hosts != NULL) {
crypto/openssl/crypto/x509/x509_vpm.c
198
dest->hosts = sk_OPENSSL_STRING_deep_copy(src->hosts, str_copy, str_free);
crypto/openssl/crypto/x509/x509_vpm.c
199
if (dest->hosts == NULL)
crypto/openssl/crypto/x509/x509_vpm.c
385
return sk_OPENSSL_STRING_value(param->hosts, idx);
crypto/openssl/crypto/x509/x509_vpm.c
54
sk_OPENSSL_STRING_pop_free(vpm->hosts, str_free);
crypto/openssl/crypto/x509/x509_vpm.c
55
vpm->hosts = NULL;
crypto/openssl/crypto/x509/x509_vpm.c
64
if (vpm->hosts == NULL && (vpm->hosts = sk_OPENSSL_STRING_new_null()) == NULL) {
crypto/openssl/crypto/x509/x509_vpm.c
69
if (!sk_OPENSSL_STRING_push(vpm->hosts, copy)) {
crypto/openssl/crypto/x509/x509_vpm.c
71
if (sk_OPENSSL_STRING_num(vpm->hosts) == 0) {
crypto/openssl/crypto/x509/x509_vpm.c
72
sk_OPENSSL_STRING_free(vpm->hosts);
crypto/openssl/crypto/x509/x509_vpm.c
73
vpm->hosts = NULL;
lib/libc/net/getaddrinfo.c
1921
hosts, NULL, addrinfo_id_func, addrinfo_marshal_func,
lib/libc/net/gethostnamadr.c
533
hosts, (void *)nss_lt_name,
lib/libc/net/gethostnamadr.c
595
hosts, (void *)nss_lt_id,
lib/libc/tests/resolv/resolv_test.c
177
size_t i = (random() & 0x0fffffff) % hosts->sl_cur;
lib/libc/tests/resolv/resolv_test.c
178
char *host = hosts->sl_str[i];
lib/libc/tests/resolv/resolv_test.c
205
threadnum, hosts->sl_str[i], error, errstr);
lib/libc/tests/resolv/resolv_test.c
259
hosts = sl_init();
lib/libc/tests/resolv/resolv_test.c
266
ATF_REQUIRE_MSG(0 < hosts->sl_cur, "0 hosts in %s", hostlist_file);
lib/libc/tests/resolv/resolv_test.c
268
ask = calloc(hosts->sl_cur, sizeof(int));
lib/libc/tests/resolv/resolv_test.c
271
got = calloc(hosts->sl_cur, sizeof(int));
lib/libc/tests/resolv/resolv_test.c
290
for (i = 0; i < hosts->sl_cur; i++) {
lib/libc/tests/resolv/resolv_test.c
293
"Error: host %s ask %d got %d", hosts->sl_str[i],
lib/libc/tests/resolv/resolv_test.c
301
sl_free(hosts, 1);
lib/libc/tests/resolv/resolv_test.c
59
static StringList *hosts = NULL;
lib/libc/tests/resolv/resolv_test.c
91
sl_add(hosts, strdup(ptr));
libexec/revnetgroup/revnetgroup.c
107
if (hosts == -1)
libexec/revnetgroup/revnetgroup.c
146
if (hosts ? host && strcmp(host,"-") : user && strcmp(user, "-"))
libexec/revnetgroup/revnetgroup.c
147
mstore(mtable, hosts ? host : user, gcur->key, domain);
libexec/revnetgroup/revnetgroup.c
77
int hosts = -1, i;
libexec/revnetgroup/revnetgroup.c
85
if (hosts != -1) {
libexec/revnetgroup/revnetgroup.c
89
hosts = 0;
libexec/revnetgroup/revnetgroup.c
92
if (hosts != -1) {
libexec/revnetgroup/revnetgroup.c
96
hosts = 1;
sbin/ipf/libipf/alist_free.c
11
alist_free(alist_t *hosts)
sbin/ipf/libipf/alist_free.c
15
for (a = hosts; a != NULL; a = next) {
sbin/ipf/libipf/load_url.c
14
alist_t *hosts = NULL;
sbin/ipf/libipf/load_url.c
21
hosts = load_file(url);
sbin/ipf/libipf/load_url.c
24
hosts = load_file(url);
sbin/ipf/libipf/load_url.c
27
hosts = load_http(url);
sbin/ipf/libipf/load_url.c
30
return (hosts);
sys/netgraph/ng_bridge.c
641
+ (priv->numHosts * sizeof(*ary->hosts)), M_NOWAIT);
sys/netgraph/ng_bridge.c
650
memcpy(ary->hosts[i].addr,
sys/netgraph/ng_bridge.c
652
sizeof(ary->hosts[i].addr));
sys/netgraph/ng_bridge.c
653
ary->hosts[i].age = host->age;
sys/netgraph/ng_bridge.c
654
ary->hosts[i].staleness = host->staleness;
sys/netgraph/ng_bridge.c
655
strncpy(ary->hosts[i].hook,
sys/netgraph/ng_bridge.c
657
sizeof(ary->hosts[i].hook));
sys/netgraph/ng_bridge.h
131
struct ng_bridge_hostent hosts[];
sys/netpfil/ipfw/nat64/nat64lsn.c
1008
CK_SLIST_INIT(&ji->hosts);
sys/netpfil/ipfw/nat64/nat64lsn.c
1010
nat64lsn_expire_hosts(cfg, &ji->hosts);
sys/netpfil/ipfw/nat64/nat64lsn.c
1079
CK_SLIST_INSERT_HEAD(&link->alias->hosts, link, alias_entries);
sys/netpfil/ipfw/nat64/nat64lsn.c
116
struct nat64lsn_hosts_slist hosts;
sys/netpfil/ipfw/nat64/nat64lsn.c
1488
struct nat64lsn_hosts_slist hosts;
sys/netpfil/ipfw/nat64/nat64lsn.c
1495
CK_SLIST_INIT(&hosts);
sys/netpfil/ipfw/nat64/nat64lsn.c
1499
while (!CK_SLIST_EMPTY(&ji->hosts)) {
sys/netpfil/ipfw/nat64/nat64lsn.c
1500
host = CK_SLIST_FIRST(&ji->hosts);
sys/netpfil/ipfw/nat64/nat64lsn.c
1501
CK_SLIST_REMOVE_HEAD(&ji->hosts, entries);
sys/netpfil/ipfw/nat64/nat64lsn.c
1514
CK_SLIST_INSERT_HEAD(&hosts, host, entries);
sys/netpfil/ipfw/nat64/nat64lsn.c
1546
if (CK_SLIST_EMPTY(&hosts) &&
sys/netpfil/ipfw/nat64/nat64lsn.c
1554
CK_SLIST_MOVE(&ji->hosts, &hosts, entries);
sys/netpfil/ipfw/nat64/nat64lsn.c
1859
CK_SLIST_INIT(&alias->hosts);
sys/netpfil/ipfw/nat64/nat64lsn.c
1918
CK_SLIST_REMOVE(&link->alias->hosts, link,
sys/netpfil/ipfw/nat64/nat64lsn.c
898
struct nat64lsn_hosts_slist *hosts)
sys/netpfil/ipfw/nat64/nat64lsn.c
923
CK_SLIST_INSERT_HEAD(hosts, host, entries);
sys/netpfil/ipfw/nat64/nat64lsn.h
124
struct nat64lsn_aliaslink_slist hosts;
usr.bin/getent/getent.c
63
static int hosts(int, char *[]);
usr.bin/getent/getent.c
86
{ "hosts", hosts, },
usr.bin/rup/rup.c
63
} *hosts;
usr.bin/rup/rup.c
70
if (!hosts)
usr.bin/rup/rup.c
73
for (hp = hosts; hp != NULL; hp = hp->next) {
usr.bin/rup/rup.c
88
hp->next = hosts;
usr.bin/rup/rup.c
89
hosts = hp;
usr.bin/rusers/rusers.c
64
} *hosts;
usr.bin/rusers/rusers.c
71
if (hosts == NULL)
usr.bin/rusers/rusers.c
74
for (hp = hosts; hp != NULL; hp = hp->next) {
usr.bin/rusers/rusers.c
89
hp->next = hosts;
usr.bin/rusers/rusers.c
90
hosts = hp;
usr.bin/systat/netcmds.c
258
if (hosts == NULL)
usr.bin/systat/netcmds.c
260
free((char *)hosts), hosts = 0;
usr.bin/systat/netcmds.c
264
for (p = hosts; p < hosts+nhosts; p++)
usr.bin/systat/netcmds.c
270
hosts = (struct hitem *)malloc(sizeof (*p));
usr.bin/systat/netcmds.c
272
hosts = (struct hitem *)realloc(hosts, (nhosts+1)*sizeof (*p));
usr.bin/systat/netcmds.c
273
p = &hosts[nhosts++];
usr.bin/systat/netcmds.c
284
if (hosts)
usr.bin/systat/netcmds.c
285
for (p = hosts; p < hosts+nhosts; p++)
usr.bin/systat/netcmds.c
298
for (p = hosts; p < hosts+nhosts; p++) {
usr.bin/systat/netcmds.c
63
} *hosts;
usr.sbin/mountd/mountd.c
279
static char **hosts = NULL;
usr.sbin/mountd/mountd.c
505
hosts_bak = hosts;
usr.sbin/mountd/mountd.c
506
hosts_bak = realloc(hosts, nhosts * sizeof(char *));
usr.sbin/mountd/mountd.c
508
if (hosts != NULL) {
usr.sbin/mountd/mountd.c
510
free(hosts[k]);
usr.sbin/mountd/mountd.c
511
free(hosts);
usr.sbin/mountd/mountd.c
515
hosts = hosts_bak;
usr.sbin/mountd/mountd.c
516
hosts[nhosts - 1] = strdup(optarg);
usr.sbin/mountd/mountd.c
517
if (hosts[nhosts - 1] == NULL) {
usr.sbin/mountd/mountd.c
519
free(hosts[k]);
usr.sbin/mountd/mountd.c
520
free(hosts);
usr.sbin/mountd/mountd.c
545
free(hosts[k]);
usr.sbin/mountd/mountd.c
546
free(hosts);
usr.sbin/mountd/mountd.c
547
hosts = NULL;
usr.sbin/mountd/mountd.c
606
hosts = malloc(sizeof(char *));
usr.sbin/mountd/mountd.c
607
if (hosts == NULL)
usr.sbin/mountd/mountd.c
609
hosts[0] = "*";
usr.sbin/mountd/mountd.c
612
hosts_bak = hosts;
usr.sbin/mountd/mountd.c
614
hosts_bak = realloc(hosts, (nhosts + 2) *
usr.sbin/mountd/mountd.c
618
free(hosts[k]);
usr.sbin/mountd/mountd.c
619
free(hosts);
usr.sbin/mountd/mountd.c
622
hosts = hosts_bak;
usr.sbin/mountd/mountd.c
624
hosts[nhosts - 2] = "::1";
usr.sbin/mountd/mountd.c
626
hosts_bak = realloc(hosts, (nhosts + 1) *
usr.sbin/mountd/mountd.c
630
free(hosts[k]);
usr.sbin/mountd/mountd.c
631
free(hosts);
usr.sbin/mountd/mountd.c
635
hosts = hosts_bak;
usr.sbin/mountd/mountd.c
639
hosts[nhosts - 1] = "127.0.0.1";
usr.sbin/mountd/mountd.c
885
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/mountd/mountd.c
892
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/mountd/mountd.c
900
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/mountd/mountd.c
907
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/mountd/mountd.c
933
if (strcmp("*", hosts[nhostsbak]) == 0) {
usr.sbin/mountd/mountd.c
982
if ((aicode = getaddrinfo(hosts[nhostsbak], svcport_str,
usr.sbin/rpc.lockd/lockd.c
151
hosts_bak = realloc(hosts, nhosts * sizeof(char *));
usr.sbin/rpc.lockd/lockd.c
153
if (hosts != NULL) {
usr.sbin/rpc.lockd/lockd.c
155
free(hosts[i]);
usr.sbin/rpc.lockd/lockd.c
156
free(hosts);
usr.sbin/rpc.lockd/lockd.c
160
hosts = hosts_bak;
usr.sbin/rpc.lockd/lockd.c
161
hosts[nhosts - 1] = strdup(optarg);
usr.sbin/rpc.lockd/lockd.c
162
if (hosts[nhosts - 1] == NULL) {
usr.sbin/rpc.lockd/lockd.c
164
free(hosts[i]);
usr.sbin/rpc.lockd/lockd.c
165
free(hosts);
usr.sbin/rpc.lockd/lockd.c
226
hosts = malloc(sizeof(char *));
usr.sbin/rpc.lockd/lockd.c
227
if (hosts == NULL)
usr.sbin/rpc.lockd/lockd.c
230
hosts[0] = strdup("*");
usr.sbin/rpc.lockd/lockd.c
234
hosts_bak = realloc(hosts, (nhosts + 2) *
usr.sbin/rpc.lockd/lockd.c
238
free(hosts[i]);
usr.sbin/rpc.lockd/lockd.c
239
free(hosts);
usr.sbin/rpc.lockd/lockd.c
242
hosts = hosts_bak;
usr.sbin/rpc.lockd/lockd.c
245
hosts[nhosts - 2] = strdup("::1");
usr.sbin/rpc.lockd/lockd.c
247
hosts_bak = realloc(hosts, (nhosts + 1) * sizeof(char *));
usr.sbin/rpc.lockd/lockd.c
250
free(hosts[i]);
usr.sbin/rpc.lockd/lockd.c
252
free(hosts);
usr.sbin/rpc.lockd/lockd.c
256
hosts = hosts_bak;
usr.sbin/rpc.lockd/lockd.c
259
hosts[nhosts - 1] = strdup("127.0.0.1");
usr.sbin/rpc.lockd/lockd.c
559
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/rpc.lockd/lockd.c
566
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/rpc.lockd/lockd.c
575
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/rpc.lockd/lockd.c
582
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/rpc.lockd/lockd.c
597
if (strcmp("*", hosts[nhostsbak]) == 0) {
usr.sbin/rpc.lockd/lockd.c
647
if ((aicode = getaddrinfo(hosts[nhostsbak], svcport_str,
usr.sbin/rpc.lockd/lockd.c
89
char **hosts, *svcport_str = NULL;
usr.sbin/rpc.statd/file.c
135
spare_slot = &status_info->hosts[status_info->noOfHosts];
usr.sbin/rpc.statd/file.c
231
HostInfo *this_host = &status_info->hosts[i];
usr.sbin/rpc.statd/file.c
309
for (i = status_info->noOfHosts, hp = status_info->hosts; i ; i--, hp++)
usr.sbin/rpc.statd/file.c
347
for (i = status_info->noOfHosts, hp = status_info->hosts; i ; i--, hp++)
usr.sbin/rpc.statd/file.c
88
for (i = 0, hp = status_info->hosts; i < status_info->noOfHosts; i++, hp++)
usr.sbin/rpc.statd/procs.c
311
for (i = status_info->noOfHosts, hp = status_info->hosts; i; i--, hp++)
usr.sbin/rpc.statd/procs.c
350
for (i = status_info->noOfHosts, hp = status_info->hosts; i ; i--, hp++)
usr.sbin/rpc.statd/statd.c
105
hosts_bak = hosts;
usr.sbin/rpc.statd/statd.c
106
hosts_bak = realloc(hosts, nhosts * sizeof(char *));
usr.sbin/rpc.statd/statd.c
108
if (hosts != NULL) {
usr.sbin/rpc.statd/statd.c
110
free(hosts[i]);
usr.sbin/rpc.statd/statd.c
111
free(hosts);
usr.sbin/rpc.statd/statd.c
115
hosts = hosts_bak;
usr.sbin/rpc.statd/statd.c
116
hosts[nhosts - 1] = strdup(optarg);
usr.sbin/rpc.statd/statd.c
117
if (hosts[nhosts - 1] == NULL) {
usr.sbin/rpc.statd/statd.c
119
free(hosts[i]);
usr.sbin/rpc.statd/statd.c
120
free(hosts);
usr.sbin/rpc.statd/statd.c
158
hosts = malloc(sizeof(char *));
usr.sbin/rpc.statd/statd.c
159
if (hosts == NULL)
usr.sbin/rpc.statd/statd.c
162
hosts[0] = strdup("*");
usr.sbin/rpc.statd/statd.c
165
hosts_bak = hosts;
usr.sbin/rpc.statd/statd.c
167
hosts_bak = realloc(hosts, (nhosts + 2) *
usr.sbin/rpc.statd/statd.c
171
free(hosts[i]);
usr.sbin/rpc.statd/statd.c
172
free(hosts);
usr.sbin/rpc.statd/statd.c
175
hosts = hosts_bak;
usr.sbin/rpc.statd/statd.c
178
hosts[nhosts - 2] = strdup("::1");
usr.sbin/rpc.statd/statd.c
180
hosts_bak = realloc(hosts, (nhosts + 1) * sizeof(char *));
usr.sbin/rpc.statd/statd.c
183
free(hosts[i]);
usr.sbin/rpc.statd/statd.c
185
free(hosts);
usr.sbin/rpc.statd/statd.c
189
hosts = hosts_bak;
usr.sbin/rpc.statd/statd.c
192
hosts[nhosts - 1] = strdup("127.0.0.1");
usr.sbin/rpc.statd/statd.c
382
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/rpc.statd/statd.c
389
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/rpc.statd/statd.c
397
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/rpc.statd/statd.c
404
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/rpc.statd/statd.c
418
if (strcmp("*", hosts[nhostsbak]) == 0) {
usr.sbin/rpc.statd/statd.c
467
if ((aicode = getaddrinfo(hosts[nhostsbak], svcport_str,
usr.sbin/rpc.statd/statd.c
63
static char **hosts, *svcport_str = NULL;
usr.sbin/rpc.statd/statd.h
92
HostInfo hosts[1]; /* vector of monitored hosts */
usr.sbin/rpcbind/rpcbind.c
105
static char **hosts = NULL;
usr.sbin/rpcbind/rpcbind.c
384
hosts = realloc(hosts, nhostsbak * sizeof(char *));
usr.sbin/rpcbind/rpcbind.c
386
hosts[0] = "*";
usr.sbin/rpcbind/rpcbind.c
390
hosts[nhostsbak - 1] = "127.0.0.1";
usr.sbin/rpcbind/rpcbind.c
393
hosts[nhostsbak - 1] = "::1";
usr.sbin/rpcbind/rpcbind.c
418
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/rpcbind/rpcbind.c
426
hosts[nhostsbak], host_addr) == 1) {
usr.sbin/rpcbind/rpcbind.c
433
if (inet_pton(AF_INET6, hosts[nhostsbak],
usr.sbin/rpcbind/rpcbind.c
440
if (inet_pton(AF_INET, hosts[nhostsbak],
usr.sbin/rpcbind/rpcbind.c
461
if (strcmp("*", hosts[nhostsbak]) == 0)
usr.sbin/rpcbind/rpcbind.c
462
hosts[nhostsbak] = NULL;
usr.sbin/rpcbind/rpcbind.c
463
if ((aicode = getaddrinfo(hosts[nhostsbak], servname, &hints,
usr.sbin/rpcbind/rpcbind.c
474
(hosts[nhostsbak] == NULL) ? "*" :
usr.sbin/rpcbind/rpcbind.c
475
hosts[nhostsbak], nconf->nc_netid);
usr.sbin/rpcbind/rpcbind.c
733
if (getaddrinfo(hosts[i], NULL, &hints, &res) != 0)
usr.sbin/rpcbind/rpcbind.c
874
hosts = realloc(hosts, nhosts * sizeof(char *));
usr.sbin/rpcbind/rpcbind.c
875
if (hosts == NULL)
usr.sbin/rpcbind/rpcbind.c
877
hosts[nhosts - 1] = strdup(optarg);
usr.sbin/rpcbind/rpcbind.c
878
if (hosts[nhosts - 1] == NULL)