]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Fix early 200 response bug.
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 26 Mar 2014 21:05:19 +0000 (21:05 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 26 Mar 2014 21:05:19 +0000 (21:05 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11738 a1ca3aef-8c08-0410-bb20-df032aa958be

cups/request.c

index f4e7e8892b56e49c11b827606f2f31e3452a8886..caf01eedce8468a7df8a180384788872462b7100 100644 (file)
@@ -245,7 +245,7 @@ cupsDoIORequest(http_t     *http,   /* I - Connection to server or @code CUPS_HTTP
     * Get the server's response...
     */
 
-    if (status <= HTTP_STATUS_CONTINUE)
+    if (status <= HTTP_STATUS_CONTINUE || status == HTTP_STATUS_OK)
     {
       response = cupsGetResponse(http, resource);
       status   = httpGetStatus(http);