1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

The call to DNSServiceRegistrationCreate in postmaster.c does incorrect

byte-swapping on the port number which causes the call to fail on Intel
Macs.

This patch uses htons() instead of htonl() and fixes this bug.

Ashley Clark
This commit is contained in:
Neil Conway
2006-03-18 22:10:44 +00:00
parent ecd635c755
commit efef460028

View File

@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.347.2.2 2004/02/23 20:46:16 tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.347.2.3 2006/03/18 22:10:44 neilc Exp $
*
* NOTES
*
@ -782,7 +782,7 @@ PostmasterMain(int argc, char *argv[])
DNSServiceRegistrationCreate(rendezvous_name,
"_postgresql._tcp.",
"",
htonl(PostPortNumber),
htons(PostPortNumber),
"",
(DNSServiceRegistrationReply) reg_reply,
NULL);