]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The IPP backend did not retry print jobs when the printer reported itself as
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Fri, 26 Sep 2008 21:58:03 +0000 (21:58 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Fri, 26 Sep 2008 21:58:03 +0000 (21:58 +0000)
busy or unavailable (STR #2951)

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@7986 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-1.3.txt
backend/ipp.c

index 025f7069f2c2cb7027f504fc330a83bca0b5e21c..27ceba1b2deaf2e0385715e4bf849b1ec2bae7e0 100644 (file)
@@ -4,6 +4,8 @@ CHANGES-1.3.txt
 CHANGES IN CUPS V1.3.9
 
        - Documentation updates (STR #2904, STR #2944)
+       - The IPP backend did not retry print jobs when the printer
+         reported itself as busy or unavailable (STR #2951)
        - The "Set Allowed Users" web interface did not handle trailing
          whitespace correctly (STR #2956)
        - The PostScript filter did not work with Adobe applications
index 14ebea3f00c5cb9e9e4839edc56f2d8c57af2425..84bdad170b4294a6e76bff24ee4e64a0bfebffa1 100644 (file)
@@ -1118,7 +1118,7 @@ main(int  argc,                           /* I - Number of command-line args */
     }
     else if (ipp_status == IPP_SERVICE_UNAVAILABLE ||
             ipp_status == IPP_PRINTER_BUSY)
-      break;
+      continue;
     else
       copies_remaining --;