diff options
| author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2015-11-16 17:11:11 +0000 |
|---|---|---|
| committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2015-11-16 17:11:11 +0000 |
| commit | 4fa5f53548ec67bb459a553fe9cfff3dc5091bcd (patch) | |
| tree | 99ad9cff7b5f10f7a9b0d7ab60adfbb56528bfd5 | |
| parent | 21f6783298ce75d1c3972faaf3efc8cb3d8f313c (diff) | |
Notes
| -rw-r--r-- | usr.sbin/ypldap/ldapclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ypldap/ldapclient.c b/usr.sbin/ypldap/ldapclient.c index f6eb5443b509..e95585aaad32 100644 --- a/usr.sbin/ypldap/ldapclient.c +++ b/usr.sbin/ypldap/ldapclient.c @@ -71,14 +71,14 @@ client_aldap_open(struct ypldap_addr *addr) char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV]; struct sockaddr *sa = (struct sockaddr *)&p->ss; - if (getnameinfo(sa, SA_LEN(sa), hbuf, sizeof(hbuf), sbuf, + if (getnameinfo(sa, sa->sa_len, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf), NI_NUMERICHOST | NI_NUMERICSERV)) errx(1, "could not get numeric hostname"); if ((fd = socket(sa->sa_family, SOCK_STREAM, 0)) < 0) return NULL; - if (connect(fd, sa, SA_LEN(sa)) == 0) + if (connect(fd, sa, sa->sa_len) == 0) break; warn("connect to %s port %s (%s) failed", hbuf, sbuf, "tcp"); |
