]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix a compile error in libcups (<rdar://problem/14467141>)
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 17 Jul 2013 13:06:14 +0000 (13:06 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 17 Jul 2013 13:06:14 +0000 (13:06 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11151 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES.txt
cups/http.c

index ee7fb31950420591a1065005d88588de858e9b3c..6c3a5044b36914591c6101deaf503c9532306dcb 100644 (file)
@@ -3,6 +3,7 @@ CHANGES.txt - 1.7.0 - 2013-07-16
 
 CHANGES IN CUPS V1.7.0
 
+       - Fix a compile error in libcups (<rdar://problem/14467141>)
        - The scheduler incorrectly did not pass a FINAL_CONTENT_TYPE
          environment variable to the filters or backend
          (<rdar://problem/14355011>)
index 523db01da2882b9044c9c55d0476a6bee7774087..736ea5e9bf14f7382e152a171317b5116b78eb7f 100644 (file)
@@ -5247,7 +5247,7 @@ http_setup_ssl(http_t *http)              /* I - Connection to server */
     if (!message)
       message = _("Unable to establish a secure connection to host.");
 
-    _cupsSetError(IPP_PKI_ERROR, message, 1);
+    _cupsSetError(IPP_STATUS_ERROR_CUPS_PKI, message, 1);
 
     return (-1);
   }
@@ -5533,7 +5533,7 @@ http_setup_ssl(http_t *http)              /* I - Connection to server */
     http->error  = EIO;
     http->status = HTTP_STATUS_ERROR;
 
-    _cupsSetError(IPP_PKI_ERROR,
+    _cupsSetError(IPP_STATUS_ERROR_CUPS_PKI,
                   _("Unable to establish a secure connection to host."), 1);
 
     return (-1);
@@ -5550,7 +5550,7 @@ http_setup_ssl(http_t *http)              /* I - Connection to server */
     http->error  = EIO;
     http->status = HTTP_STATUS_ERROR;
 
-    _cupsSetError(IPP_PKI_ERROR,
+    _cupsSetError(IPP_STATUS_ERROR_CUPS_PKI,
                   _("Unable to establish a secure connection to host."), 1);
 
     return (-1);