diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-12 18:45:54 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-09-24 15:08:19 +0200 |
commit | 6982b488e03b8e29e186f0c54cf5f80438cceadd (patch) | |
tree | d3332206449e3abaa98dfe3686cf78165e9ef381 /src/providers/ldap | |
parent | 581de96fc30b7fe44070f17a8a73f3374d38d6ff (diff) | |
download | sssd-6982b488e03b8e29e186f0c54cf5f80438cceadd.tar.gz sssd-6982b488e03b8e29e186f0c54cf5f80438cceadd.tar.bz2 sssd-6982b488e03b8e29e186f0c54cf5f80438cceadd.zip |
Convert IN_MULTICAST parameter to host order
https://fedorahosted.org/sssd/ticket/2087
IN_MULTICAST accepts address in the host order, but network order was
supplied.
Diffstat (limited to 'src/providers/ldap')
-rw-r--r-- | src/providers/ldap/sdap_async_sudo_hostinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_sudo_hostinfo.c b/src/providers/ldap/sdap_async_sudo_hostinfo.c index 4e33babd..f0c72810 100644 --- a/src/providers/ldap/sdap_async_sudo_hostinfo.c +++ b/src/providers/ldap/sdap_async_sudo_hostinfo.c @@ -239,7 +239,7 @@ static int sdap_sudo_get_ip_addresses(TALLOC_CTX *mem_ctx, } /* ignore multicast */ - if (IN_MULTICAST(ip4_addr->sin_addr.s_addr)) { + if (IN_MULTICAST(ntohl(ip4_addr->sin_addr.s_addr))) { continue; } |