]> 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:06:04 +0000 (21:06 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Wed, 26 Mar 2014 21:06:04 +0000 (21:06 +0000)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/branches/branch-1.7@11739 a1ca3aef-8c08-0410-bb20-df032aa958be

cups/request.c

index 33fbac906b0ee8f56adb02f42b41c2ecc09e1f54..0152620564eb85d5e1674c23356928561270ae7a 100644 (file)
@@ -261,7 +261,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);