From: Neil Conway Date: Sat, 18 Mar 2006 22:10:44 +0000 (+0000) Subject: The call to DNSServiceRegistrationCreate in postmaster.c does incorrect X-Git-Tag: REL7_4_13~16 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=efef460028adb000cede3aec7efaa06e65ff89e1;p=users%2Fc2main%2Fpostgres.git The call to DNSServiceRegistrationCreate in postc 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 --- diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 8924649345..7efba17bf3 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -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);