From: Lennart Poettering Date: Fri, 21 Oct 2005 11:53:02 +0000 (+0000) Subject: remove htonl() that shouldn't be there X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;h=06397d18306af347794f361c1c011876696cbe43;p=catta remove htonl() that shouldn't be there git-svn-id: file:///home/lennart/svn/public/avahi/trunk@833 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- diff --git a/avahi-core/socket.c b/avahi-core/socket.c index d02925a..093e078 100644 --- a/avahi-core/socket.c +++ b/avahi-core/socket.c @@ -115,7 +115,7 @@ int avahi_mdns_mcast_join_ipv4(int fd, const AvahiAddress *a, int join) { #else assert(a); assert(a->proto == AVAHI_PROTO_INET); - mreq.imr_interface.s_addr = htonl(a->data.ipv4.address); + mreq.imr_interface.s_addr = a->data.ipv4.address; #endif mdns_mcast_group_ipv4(&sa);