git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@9954
7a7537e8-13f0-0310-91df-
b6672ffda945
CHANGES IN CUPS V1.5.1
- Documentation updates (STR #3885)
+ - The scheduler did not save or restore large Kerberos credentials for
+ jobs.
- The dnssd backend did not properly browse for secure IPP printers.
- httpAssembleURI* did not properly escape all special characters in the
username/password field.
int i; /* Looping var */
char filename[1024]; /* Job authentication filename */
cups_file_t *fp; /* Job authentication file */
- char line[2048]; /* Line for file */
+ char line[65536]; /* Line for file */
cupsd_printer_t *dest; /* Destination printer/class */
if ((fp = cupsFileOpen(jobfile, "r")) != NULL)
{
int bytes; /* Size of auth data */
- char line[255], /* Line from file */
- data[255]; /* Decoded data */
+ char line[65536], /* Line from file */
+ data[65536]; /* Decoded data */
for (i = 0;