zeroconf-bonjour: use g_htons() instead of htons()

htons() is not available if netinet/in.h is not included.
This commit is contained in:
Max Kellermann 2010-09-23 09:00:04 +02:00
parent 64209749fb
commit 9423b456a1

View File

@ -63,7 +63,7 @@ void init_zeroconf_osx(const char *serviceName)
DNSServiceErrorType error = DNSServiceRegister(&dnsReference,
0, 0, serviceName,
SERVICE_TYPE, NULL, NULL,
htons(listen_port), 0,
g_htons(listen_port), 0,
NULL,
dnsRegisterCallback,
NULL);