Add ESC/P2 secret decoder ring.
Updates for Stylus Pro 5500 driver, and fixes for other Stylus Pro
drivers.
Add DSC comments to calibrate output.
Add more debug stuff to IPP code to track down delayed job bug.
Don't set CLASSIFICATION environment variable unless the classification
is set on the server.
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@1651
7a7537e8-13f0-0310-91df-
b6672ffda945
/*
- * "$Id: dirsvc.c,v 1.72 2001/02/21 17:01:17 mike Exp $"
+ * "$Id: dirsvc.c,v 1.73 2001/03/28 16:55:54 mike Exp $"
*
* Directory services routines for the Common UNIX Printing System (CUPS).
*
*/
#include "cupsd.h"
+#include <grp.h>
/*
/*
- * End of "$Id: dirsvc.c,v 1.72 2001/02/21 17:01:17 mike Exp $".
+ * End of "$Id: dirsvc.c,v 1.73 2001/03/28 16:55:54 mike Exp $".
*/
/*
- * "$Id: ipp.c,v 1.124 2001/03/27 14:26:26 mike Exp $"
+ * "$Id: ipp.c,v 1.125 2001/03/28 16:55:54 mike Exp $"
*
* IPP routines for the Common UNIX Printing System (CUPS) scheduler.
*
LogMessage(L_INFO, "Job %d queued on \'%s\' by \'%s\'.", job->id,
job->dest, job->username);
+ LogMessage(L_DEBUG, "Job %d hold_until = %d", job->id, job->hold_until);
SaveJob(job->id);
/*
- * End of "$Id: ipp.c,v 1.124 2001/03/27 14:26:26 mike Exp $".
+ * End of "$Id: ipp.c,v 1.125 2001/03/28 16:55:54 mike Exp $".
*/
/*
- * "$Id: job.c,v 1.120 2001/03/15 17:48:08 mike Exp $"
+ * "$Id: job.c,v 1.121 2001/03/28 16:55:55 mike Exp $"
*
* Job management routines for the Common UNIX Printing System (CUPS).
*
snprintf(tmpdir, sizeof(tmpdir), "TMPDIR=%s", TempDir);
snprintf(datadir, sizeof(datadir), "CUPS_DATADIR=%s", DataDir);
snprintf(fontpath, sizeof(fontpath), "CUPS_FONTPATH=%s", FontPath);
- snprintf(classification, sizeof(classification), "CLASSIFICATION=%s",
- Classification);
+ if (Classification[0])
+ snprintf(classification, sizeof(classification), "CLASSIFICATION=%s",
+ Classification);
+ else
+ classification[0] = '\0';
if (getenv("LD_LIBRARY_PATH") != NULL)
snprintf(ldpath, sizeof(ldpath), "LD_LIBRARY_PATH=%s", getenv("LD_LIBRARY_PATH"));
else
/*
- * End of "$Id: job.c,v 1.120 2001/03/15 17:48:08 mike Exp $".
+ * End of "$Id: job.c,v 1.121 2001/03/28 16:55:55 mike Exp $".
*/
/*
- * "$Id: server.c,v 1.1 2001/02/21 17:01:18 mike Exp $"
+ * "$Id: server.c,v 1.2 2001/03/28 16:55:56 mike Exp $"
*
* Server start/stop routines for the Common UNIX Printing System (CUPS).
*
#include "cupsd.h"
+#include <grp.h>
+
#ifdef HAVE_LIBSSL
# include <openssl/ssl.h>
# include <openssl/rand.h>
/*
- * End of "$Id: server.c,v 1.1 2001/02/21 17:01:18 mike Exp $".
+ * End of "$Id: server.c,v 1.2 2001/03/28 16:55:56 mike Exp $".
*/