]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fixed a confusing error message from cups-polld (STR #3806)
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Fri, 6 May 2011 23:07:28 +0000 (23:07 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Fri, 6 May 2011 23:07:28 +0000 (23:07 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@9753 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES.txt
scheduler/cups-polld.c

index 6e4252151494fd290034ec02a5376dddd7932a38..fa2a88ac4f845f6ca85121804a85cdab385e485e 100644 (file)
@@ -3,6 +3,7 @@ CHANGES.txt - 2011-05-06
 
 CHANGES IN CUPS V1.5b1
 
+       - Fixed a confusing error message from cups-polld (STR #3806)
        - Increased the default RIPCache value to 128MB (STR #3535)
        - MIME errors are now routed to the error_log file (STR #2410)
        - Updated PDF filter to support new Ghostscript ps2write device
index e8041e06186074ae844959b28dd7ad01b3e8f7ab..24e312ef53551ef933b87088219908a2fb71fcc2 100644 (file)
@@ -153,9 +153,8 @@ main(int  argc,                             /* I - Number of command-line args */
       if ((http = httpConnectEncrypt(argv[1], atoi(argv[2]),
                                      cupsEncryption())) == NULL)
       {
-       fprintf(stderr, "ERROR: %s Unable to connect to %s on port %s: %s\n",
-               prefix, argv[1], argv[2],
-               h_errno ? hstrerror(h_errno) : strerror(errno));
+       fprintf(stderr, "ERROR: %s Unable to connect to %s on port %s.\n",
+               prefix, argv[1], argv[2]);
       }
     }