CHANGES IN CUPS V1.1.20rc1
+ - The pstops filter only sent the TBCP exit sequence if
+ it was defined in the JCLEnd attribute in the PPD file
+ (STR #224)
- Support for more than 1024 files was broken on Solaris
9 (STR #217)
- The setgroups() calls now pass in 1 group (the
/*
- * "$Id: pstops.c,v 1.54.2.42 2003/08/01 18:57:54 mike Exp $"
+ * "$Id: pstops.c,v 1.54.2.43 2003/08/07 14:56:00 mike Exp $"
*
* PostScript filter for the Common UNIX Printing System (CUPS).
*
{
if (ppd->jcl_end)
fputs(ppd->jcl_end, stdout);
- else if (ppd->num_filters == 0)
- putchar(0x04);
+ else
+ {
+ if (ppd->num_filters == 0)
+ putchar(0x04);
+
+ if (Protocol == PROT_TBCP)
+ fputs("\033%-12345X", stdout);
+ }
}
/*
/*
- * End of "$Id: pstops.c,v 1.54.2.42 2003/08/01 18:57:54 mike Exp $".
+ * End of "$Id: pstops.c,v 1.54.2.43 2003/08/07 14:56:00 mike Exp $".
*/