Index: CHANGES.txt =================================================================== --- CHANGES.txt (revision 8287) +++ CHANGES.txt (working copy) @@ -4,6 +4,8 @@ CHANGES IN CUPS V1.4b3 - Documentation fixes (STR #3044, STR #3057) + - The web interface and scheduler did not support URIs up to 1024 bytes + in length (STR #3072) - Fixed pdftops issues with page sizes (STR #3063) - Fixed pdftops issues with Ghostscript (STR #3062) - The scheduler incorrectly registered default profiles for PostScript Index: templates/choose-uri.tmpl =================================================================== --- templates/choose-uri.tmpl (revision 8287) +++ templates/choose-uri.tmpl (working copy) @@ -10,7 +10,7 @@ - + Index: templates/es/choose-uri.tmpl =================================================================== --- templates/es/choose-uri.tmpl (revision 8287) +++ templates/es/choose-uri.tmpl (working copy) @@ -10,7 +10,7 @@
Connection:
- + Index: scheduler/dirsvc.c =================================================================== --- scheduler/dirsvc.c (revision 8287) +++ scheduler/dirsvc.c (working copy) @@ -283,7 +283,7 @@ { cups_file_t *fp; /* remote.cache file */ int linenum; /* Current line number */ - char line[1024], /* Line from file */ + char line[4096], /* Line from file */ *value, /* Pointer to value */ *valueptr, /* Pointer into value */ scheme[32], /* Scheme portion of URI */ Index: scheduler/printers.c =================================================================== --- scheduler/printers.c (revision 8287) +++ scheduler/printers.c (working copy) @@ -929,7 +929,7 @@ { cups_file_t *fp; /* printers.conf file */ int linenum; /* Current line number */ - char line[1024], /* Line from file */ + char line[4096], /* Line from file */ *value, /* Pointer to value */ *valueptr; /* Pointer into value */ cupsd_printer_t *p; /* Current printer */ Index: scheduler/classes.c =================================================================== --- scheduler/classes.c (revision 8287) +++ scheduler/classes.c (working copy) @@ -287,7 +287,7 @@ { cups_file_t *fp; /* classes.conf file */ int linenum; /* Current line number */ - char line[1024], /* Line from file */ + char line[4096], /* Line from file */ *value, /* Pointer to value */ *valueptr; /* Pointer into value */ cupsd_printer_t *p, /* Current printer class */
Conexión: