]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The ippfind utility reported the wrong port numbers when compiled against Avahi
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 22 Jul 2013 14:57:14 +0000 (14:57 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Mon, 22 Jul 2013 14:57:14 +0000 (14:57 +0000)
(<rdar://problem/14508324>)

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11164 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES.txt
test/ippfind.c

index 8f1728d2c4bdd351b151fdee90b447b1c78233e1..4fccbb03987b46fa3b3e3bde47a7fb7e1a7a42df 100644 (file)
@@ -1,8 +1,10 @@
-CHANGES.txt - 1.7.0 - 2013-07-16
+CHANGES.txt - 1.7.0 - 2013-07-22
 --------------------------------
 
 CHANGES IN CUPS V1.7.0
 
+       - The ippfind utility reported the wrong port numbers when compiled
+         against Avahi (<rdar://problem/14508324>)
        - httpGetFd, httpGetFile, httpPutFd, and httpPutFile did not
          automatically reconnect if the server closed the connecion after the
          previous response.
index d3d30cdc6deb5bd557c71acbd7e3d08e294a2bbe..9294a48bab279ad71f2901c8bf186cd7ce1f78dc 100644 (file)
@@ -2618,7 +2618,7 @@ resolve_callback(
 
   service->is_resolved = 1;
   service->host        = strdup(hostTarget);
-  service->port        = ntohs(port);
+  service->port        = port;
 
  /*
   * Loop through the TXT key/value pairs and add them to an array...