summaryrefslogtreecommitdiff
path: root/ctdb/protocol/protocol_util.c
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@gmail.com>2018-06-27 13:41:38 +1000
committerKarolin Seeger <kseeger@samba.org>2018-07-10 10:44:13 +0200
commit9974975faccdceddd8f37b75eb39099636685486 (patch)
tree83dd33ca8adbe537ca8dbab8d3346c72c95a408b /ctdb/protocol/protocol_util.c
parentbf7ae2fb5d4bdd4d3110f28b96130f54fe98daa5 (diff)
downloadsamba-9974975faccdceddd8f37b75eb39099636685486.tar.gz
ctdb-common: Use sin6_len only if the structure supports it
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13493 Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net> (cherry picked from commit 79992dbb73ac9749ac987cb6a88964fa600b4c35)
Diffstat (limited to 'ctdb/protocol/protocol_util.c')
-rw-r--r--ctdb/protocol/protocol_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctdb/protocol/protocol_util.c b/ctdb/protocol/protocol_util.c
index 73652e7f060..c75555fa734 100644
--- a/ctdb/protocol/protocol_util.c
+++ b/ctdb/protocol/protocol_util.c
@@ -206,7 +206,7 @@ static int ipv6_from_string(const char *str, struct sockaddr_in6 *ip6)
return EINVAL;
}
-#ifdef HAVE_SOCK_SIN_LEN
+#ifdef HAVE_SOCK_SIN6_LEN
ip6->sin6_len = sizeof(*ip6);
#endif
return 0;