- The scheduler enforced a 30 second timeout on all
clients regardless of the Timeout directive and if a
CGI was currently running.
+ - cupsParseOptions() now sets boolean options to
+ option=true or option=false.
CHANGES IN CUPS V1.1.6-3
/*
- * "$Id: options.c,v 1.19 2001/02/09 16:23:35 mike Exp $"
+ * "$Id: options.c,v 1.20 2001/03/07 16:54:20 mike Exp $"
*
* Option routines for the Common UNIX Printing System (CUPS).
*
* Start of another option...
*/
- num_options = cupsAddOption(name, "", num_options, options);
+ if (strncasecmp(name, "no", 2) == 0)
+ num_options = cupsAddOption(name + 2, "false", num_options,
+ options);
+ else
+ num_options = cupsAddOption(name, "true", num_options, options);
+
continue;
}
/*
- * End of "$Id: options.c,v 1.19 2001/02/09 16:23:35 mike Exp $".
+ * End of "$Id: options.c,v 1.20 2001/03/07 16:54:20 mike Exp $".
*/
Printer Description:MyPrinter@MyServer:\
:pr=|/usr/bin/lp -d MyPrinter:\
:op=daemon:\
- :pd=/etc/cups/ppd/MyPrinter.ppd
+ :pd=/etc/cups/ppd/MyPrinter.ppd:
</PRE></UL>
<!-- NEED 2in -->