CHANGES IN CUPS V1.1.19
 
+       - If a backend failed for a printer, CUPS would
+         incorrectly requeue the job for printing again.
        - Added support for IPP collections and files.
        - Added experimental support for generic CGI scripts and
          programs, Java, Perl, PHP, and Python to the
 
 /*
- * "$Id: job.c,v 1.124.2.54 2003/03/14 21:43:33 mike Exp $"
+ * "$Id: job.c,v 1.124.2.55 2003/03/17 14:17:31 mike Exp $"
  *
  *   Job management routines for the Common UNIX Printing System (CUPS).
  *
         FilterLevel -= current->cost;
 
         if (current->status < 0 &&
-           (current->dtype & (CUPS_PRINTER_CLASS | CUPS_PRINTER_IMPLICIT)) != 0)
+           !(current->dtype & (CUPS_PRINTER_CLASS | CUPS_PRINTER_IMPLICIT)))
          SetPrinterState(current->printer, IPP_PRINTER_STOPPED);
        else if (current->printer->state != IPP_PRINTER_STOPPED)
          SetPrinterState(current->printer, IPP_PRINTER_IDLE);
 
 
 /*
- * End of "$Id: job.c,v 1.124.2.54 2003/03/14 21:43:33 mike Exp $".
+ * End of "$Id: job.c,v 1.124.2.55 2003/03/17 14:17:31 mike Exp $".
  */