From 68b3fb6aaf3a793d87f8bcfc7e75c1a9e0849688 Mon Sep 17 00:00:00 2001 From: rodrigc Date: Mon, 16 Nov 2015 17:11:11 +0000 Subject: Do not use SA_LEN() to dereference sa_len. FreeBSD lacks the SA_LEN() macro. --- usr.sbin/ypldap/ldapclient.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/ypldap') diff --git a/usr.sbin/ypldap/ldapclient.c b/usr.sbin/ypldap/ldapclient.c index f6eb544..e95585a 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"); -- cgit v1.1