]> git.ipfire.org Git - thirdparty/cups.git/blame - scheduler/classes.c
Load cups into easysw/current.
[thirdparty/cups.git] / scheduler / classes.c
CommitLineData
ef416fc2 1/*
bd7854cb 2 * "$Id: classes.c 5083 2006-02-06 02:57:43Z mike $"
ef416fc2 3 *
4 * Printer class routines for the Common UNIX Printing System (CUPS).
5 *
bd7854cb 6 * Copyright 1997-2006 by Easy Software Products, all rights reserved.
ef416fc2 7 *
8 * These coded instructions, statements, and computer programs are the
9 * property of Easy Software Products and are protected by Federal
10 * copyright law. Distribution and use rights are outlined in the file
11 * "LICENSE.txt" which should have been included with this file. If this
12 * file is missing or damaged please contact Easy Software Products
13 * at:
14 *
15 * Attn: CUPS Licensing Information
16 * Easy Software Products
17 * 44141 Airport View Drive, Suite 204
18 * Hollywood, Maryland 20636 USA
19 *
20 * Voice: (301) 373-9600
21 * EMail: cups-info@cups.org
22 * WWW: http://www.cups.org
23 *
24 * Contents:
25 *
26 * cupsdAddClass() - Add a class to the system.
27 * cupsdAddPrinterToClass() - Add a printer to a class...
28 * cupsdDeletePrinterFromClass() - Delete a printer from a class.
29 * cupsdDeletePrinterFromClasses() - Delete a printer from all classes.
30 * cupsdDeleteAllClasses() - Remove all classes from the system.
31 * cupsdFindAvailablePrinter() - Find an available printer in a class.
32 * cupsdFindClass() - Find the named class.
33 * cupsdLoadAllClasses() - Load classes from the classes.conf file.
34 * cupsdSaveAllClasses() - Save classes to the classes.conf file.
35 * cupsdUpdateImplicitClasses() - Update the accepting state of implicit
36 * classes.
37 */
38
39/*
40 * Include necessary headers...
41 */
42
43#include "cupsd.h"
44
45
46/*
47 * 'cupsdAddClass()' - Add a class to the system.
48 */
49
50cupsd_printer_t * /* O - New class */
51cupsdAddClass(const char *name) /* I - Name of class */
52{
53 cupsd_printer_t *c; /* New class */
54
55
56 /*
57 * Add the printer and set the type to "class"...
58 */
59
60 if ((c = cupsdAddPrinter(name)) != NULL)
61 {
62 /*
63 * Change from a printer to a class...
64 */
65
66 c->type = CUPS_PRINTER_CLASS;
67
68 cupsdSetStringf(&c->uri, "ipp://%s:%d/classes/%s", ServerName, LocalPort,
69 name);
70 cupsdSetString(&c->error_policy, "retry-job");
71 }
72
73 return (c);
74}
75
76
77/*
78 * 'cupsdAddPrinterToClass()' - Add a printer to a class...
79 */
80
81void
82cupsdAddPrinterToClass(
83 cupsd_printer_t *c, /* I - Class to add to */
84 cupsd_printer_t *p) /* I - Printer to add */
85{
86 int i; /* Looping var */
87 cupsd_printer_t **temp; /* Pointer to printer array */
88
89
90 /*
91 * See if this printer is already a member of the class...
92 */
93
94 for (i = 0; i < c->num_printers; i ++)
95 if (c->printers[i] == p)
96 return;
97
98 /*
99 * Allocate memory as needed...
100 */
101
102 if (c->num_printers == 0)
103 temp = malloc(sizeof(cupsd_printer_t *));
104 else
105 temp = realloc(c->printers, sizeof(cupsd_printer_t *) * (c->num_printers + 1));
106
107 if (temp == NULL)
108 {
109 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to add printer %s to class %s!",
110 p->name, c->name);
111 return;
112 }
113
114 /*
115 * Add the printer to the end of the array and update the number of printers.
116 */
117
118 c->printers = temp;
119 temp += c->num_printers;
120 c->num_printers ++;
121
122 *temp = p;
123}
124
125
126/*
127 * 'cupsdDeletePrinterFromClass()' - Delete a printer from a class.
128 */
129
130void
131cupsdDeletePrinterFromClass(
132 cupsd_printer_t *c, /* I - Class to delete from */
133 cupsd_printer_t *p) /* I - Printer to delete */
134{
135 int i; /* Looping var */
136 cups_ptype_t type, /* Class type */
137 oldtype; /* Old class type */
138
139
140 /*
141 * See if the printer is in the class...
142 */
143
144 for (i = 0; i < c->num_printers; i ++)
145 if (p == c->printers[i])
146 break;
147
148 /*
149 * If it is, remove it from the list...
150 */
151
152 if (i < c->num_printers)
153 {
154 /*
155 * Yes, remove the printer...
156 */
157
158 c->num_printers --;
159 if (i < c->num_printers)
160 memmove(c->printers + i, c->printers + i + 1,
161 (c->num_printers - i) * sizeof(cupsd_printer_t *));
162 }
163 else
164 return;
165
166 /*
167 * Recompute the printer type mask as needed...
168 */
169
170 if (c->num_printers > 0)
171 {
172 oldtype = c->type;
173 type = c->type & (CUPS_PRINTER_CLASS | CUPS_PRINTER_IMPLICIT);
174 c->type = ~CUPS_PRINTER_REMOTE;
175
176 for (i = 0; i < c->num_printers; i ++)
177 c->type &= c->printers[i]->type;
178
179 c->type |= type;
180
181 /*
182 * Update the IPP attributes...
183 */
184
185 if (c->type != oldtype)
186 cupsdSetPrinterAttrs(c);
187 }
188}
189
190
191/*
192 * 'cupsdDeletePrinterFromClasses()' - Delete a printer from all classes.
193 */
194
195void
196cupsdDeletePrinterFromClasses(
197 cupsd_printer_t *p) /* I - Printer to delete */
198{
199 cupsd_printer_t *c; /* Pointer to current class */
200
201
202 /*
203 * Loop through the printer/class list and remove the printer
204 * from each class listed...
205 */
206
207 for (c = (cupsd_printer_t *)cupsArrayFirst(Printers);
208 c;
209 c = (cupsd_printer_t *)cupsArrayNext(Printers))
210 if (c->type & (CUPS_PRINTER_CLASS | CUPS_PRINTER_IMPLICIT))
211 cupsdDeletePrinterFromClass(c, p);
212
213 /*
214 * Then clean out any empty implicit classes...
215 */
216
217 for (c = (cupsd_printer_t *)cupsArrayFirst(ImplicitPrinters);
218 c;
219 c = (cupsd_printer_t *)cupsArrayNext(ImplicitPrinters))
220 if (c->num_printers == 0)
221 {
222 cupsArrayRemove(ImplicitPrinters, c);
223 cupsdDeletePrinter(c, 0);
224 }
225}
226
227
228/*
229 * 'cupsdDeleteAllClasses()' - Remove all classes from the system.
230 */
231
232void
233cupsdDeleteAllClasses(void)
234{
235 cupsd_printer_t *c; /* Pointer to current printer/class */
236
237
238 for (c = (cupsd_printer_t *)cupsArrayFirst(Printers);
239 c;
240 c = (cupsd_printer_t *)cupsArrayNext(Printers))
241 if (c->type & CUPS_PRINTER_CLASS)
242 cupsdDeletePrinter(c, 0);
243}
244
245
246/*
247 * 'cupsdFindAvailablePrinter()' - Find an available printer in a class.
248 */
249
250cupsd_printer_t * /* O - Available printer or NULL */
251cupsdFindAvailablePrinter(
252 const char *name) /* I - Class to check */
253{
254 int i; /* Looping var */
255 cupsd_printer_t *c; /* Printer class */
256
257
258 /*
259 * Find the class...
260 */
261
262 if ((c = cupsdFindClass(name)) == NULL)
263 {
264 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to find class \"%s\"!", name);
265 return (NULL);
266 }
267
268 /*
269 * Loop through the printers in the class and return the first idle
270 * printer... We keep track of the last printer that we used so that
271 * a "round robin" type of scheduling is realized (otherwise the first
272 * server might be saturated with print jobs...)
273 *
274 * Thanks to Joel Fredrikson for helping us get this right!
275 */
276
277 for (i = c->last_printer + 1; ; i ++)
278 {
279 if (i >= c->num_printers)
280 i = 0;
281
282 if (c->printers[i]->accepting &&
283 (c->printers[i]->state == IPP_PRINTER_IDLE ||
284 ((c->printers[i]->type & CUPS_PRINTER_REMOTE) && !c->printers[i]->job)))
285 {
286 c->last_printer = i;
287 return (c->printers[i]);
288 }
289
290 if (i == c->last_printer)
291 break;
292 }
293
294 return (NULL);
295}
296
297
298/*
299 * 'cupsdFindClass()' - Find the named class.
300 */
301
302cupsd_printer_t * /* O - Matching class or NULL */
303cupsdFindClass(const char *name) /* I - Name of class */
304{
305 cupsd_printer_t *c; /* Current class/printer */
306
307
308 if ((c = cupsdFindDest(name)) != NULL &&
309 (c->type & (CUPS_PRINTER_CLASS | CUPS_PRINTER_IMPLICIT)))
310 return (c);
311 else
312 return (NULL);
313}
314
315
316/*
317 * 'cupsdLoadAllClasses()' - Load classes from the classes.conf file.
318 */
319
320void
321cupsdLoadAllClasses(void)
322{
323 cups_file_t *fp; /* classes.conf file */
324 int linenum; /* Current line number */
325 char line[1024], /* Line from file */
326 *value, /* Pointer to value */
327 *valueptr; /* Pointer into value */
328 cupsd_printer_t *p, /* Current printer class */
329 *temp; /* Temporary pointer to printer */
330
331
332 /*
333 * Open the classes.conf file...
334 */
335
336 snprintf(line, sizeof(line), "%s/classes.conf", ServerRoot);
337 if ((fp = cupsFileOpen(line, "r")) == NULL)
338 {
fa73b229 339 if (errno != ENOENT)
bd7854cb 340 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to open %s - %s", line,
fa73b229 341 strerror(errno));
ef416fc2 342 return;
343 }
344
345 /*
346 * Read class configurations until we hit EOF...
347 */
348
349 linenum = 0;
350 p = NULL;
351
352 while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
353 {
354 /*
355 * Decode the directive...
356 */
357
358 if (!strcasecmp(line, "<Class") ||
359 !strcasecmp(line, "<DefaultClass"))
360 {
361 /*
362 * <Class name> or <DefaultClass name>
363 */
364
365 if (p == NULL && value)
366 {
bd7854cb 367 cupsdLogMessage(CUPSD_LOG_DEBUG, "Loading class %s...", value);
ef416fc2 368
369 p = cupsdAddClass(value);
370 p->accepting = 1;
371 p->state = IPP_PRINTER_IDLE;
372
373 if (!strcasecmp(line, "<DefaultClass"))
374 DefaultPrinter = p;
375 }
376 else
377 {
378 cupsdLogMessage(CUPSD_LOG_ERROR,
379 "Syntax error on line %d of classes.conf.", linenum);
380 return;
381 }
382 }
383 else if (!strcasecmp(line, "</Class>"))
384 {
385 if (p != NULL)
386 {
387 cupsdSetPrinterAttrs(p);
388 p = NULL;
389 }
390 else
391 {
392 cupsdLogMessage(CUPSD_LOG_ERROR,
393 "Syntax error on line %d of classes.conf.", linenum);
394 return;
395 }
396 }
397 else if (!p)
398 {
399 cupsdLogMessage(CUPSD_LOG_ERROR,
400 "Syntax error on line %d of classes.conf.", linenum);
401 return;
402 }
403 else if (!strcasecmp(line, "Info"))
404 {
405 if (value)
406 cupsdSetString(&p->info, value);
407 }
408 else if (!strcasecmp(line, "Location"))
409 {
410 if (value)
411 cupsdSetString(&p->location, value);
412 }
413 else if (!strcasecmp(line, "Printer"))
414 {
415 if (!value)
416 {
417 cupsdLogMessage(CUPSD_LOG_ERROR,
418 "Syntax error on line %d of classes.conf.", linenum);
419 return;
420 }
421 else if ((temp = cupsdFindPrinter(value)) == NULL)
422 {
423 cupsdLogMessage(CUPSD_LOG_WARN,
424 "Unknown printer %s on line %d of classes.conf.",
425 value, linenum);
426
427 /*
428 * Add the missing remote printer...
429 */
430
431 if ((temp = cupsdAddPrinter(value)) != NULL)
432 {
433 cupsdSetString(&temp->make_model, "Remote Printer on unknown");
434
435 temp->state = IPP_PRINTER_STOPPED;
436 temp->type |= CUPS_PRINTER_REMOTE;
437 temp->browse_time = 2147483647;
438
439 cupsdSetString(&temp->location, "Location Unknown");
440 cupsdSetString(&temp->info, "No Information Available");
441 temp->hostname[0] = '\0';
442
443 cupsdSetPrinterAttrs(temp);
444 }
445 }
446
447 if (temp)
448 cupsdAddPrinterToClass(p, temp);
449 }
450 else if (!strcasecmp(line, "State"))
451 {
452 /*
453 * Set the initial queue state...
454 */
455
456 if (!strcasecmp(value, "idle"))
457 p->state = IPP_PRINTER_IDLE;
458 else if (!strcasecmp(value, "stopped"))
459 p->state = IPP_PRINTER_STOPPED;
460 else
461 {
462 cupsdLogMessage(CUPSD_LOG_ERROR,
463 "Syntax error on line %d of classes.conf.",
464 linenum);
465 return;
466 }
467 }
468 else if (!strcasecmp(line, "StateMessage"))
469 {
470 /*
471 * Set the initial queue state message...
472 */
473
474 if (value)
475 strlcpy(p->state_message, value, sizeof(p->state_message));
476 }
477 else if (!strcasecmp(line, "StateTime"))
478 {
479 /*
480 * Set the state time...
481 */
482
483 if (value)
484 p->state_time = atoi(value);
485 }
486 else if (!strcasecmp(line, "Accepting"))
487 {
488 /*
489 * Set the initial accepting state...
490 */
491
492 if (value &&
493 (!strcasecmp(value, "yes") ||
494 !strcasecmp(value, "on") ||
495 !strcasecmp(value, "true")))
496 p->accepting = 1;
497 else if (value &&
498 (!strcasecmp(value, "no") ||
499 !strcasecmp(value, "off") ||
500 !strcasecmp(value, "false")))
501 p->accepting = 0;
502 else
503 {
504 cupsdLogMessage(CUPSD_LOG_ERROR,
505 "Syntax error on line %d of classes.conf.",
506 linenum);
507 return;
508 }
509 }
510 else if (!strcasecmp(line, "Shared"))
511 {
512 /*
513 * Set the initial shared state...
514 */
515
516 if (value &&
517 (!strcasecmp(value, "yes") ||
518 !strcasecmp(value, "on") ||
519 !strcasecmp(value, "true")))
520 p->shared = 1;
521 else if (value &&
522 (!strcasecmp(value, "no") ||
523 !strcasecmp(value, "off") ||
524 !strcasecmp(value, "false")))
525 p->shared = 0;
526 else
527 {
528 cupsdLogMessage(CUPSD_LOG_ERROR,
529 "Syntax error on line %d of printers.conf.",
530 linenum);
531 return;
532 }
533 }
534 else if (!strcasecmp(line, "JobSheets"))
535 {
536 /*
537 * Set the initial job sheets...
538 */
539
540 if (value)
541 {
542 for (valueptr = value;
543 *valueptr && !isspace(*valueptr & 255);
544 valueptr ++);
545
546 if (*valueptr)
547 *valueptr++ = '\0';
548
549 cupsdSetString(&p->job_sheets[0], value);
550
551 while (isspace(*valueptr & 255))
552 valueptr ++;
553
554 if (*valueptr)
555 {
556 for (value = valueptr;
557 *valueptr && !isspace(*valueptr & 255);
558 valueptr ++);
559
560 if (*valueptr)
561 *valueptr++ = '\0';
562
563 cupsdSetString(&p->job_sheets[1], value);
564 }
565 }
566 else
567 {
568 cupsdLogMessage(CUPSD_LOG_ERROR,
569 "Syntax error on line %d of classes.conf.", linenum);
570 return;
571 }
572 }
573 else if (!strcasecmp(line, "AllowUser"))
574 {
575 if (value)
576 {
577 p->deny_users = 0;
578 cupsdAddPrinterUser(p, value);
579 }
580 else
581 {
582 cupsdLogMessage(CUPSD_LOG_ERROR,
583 "Syntax error on line %d of classes.conf.", linenum);
584 return;
585 }
586 }
587 else if (!strcasecmp(line, "DenyUser"))
588 {
589 if (value)
590 {
591 p->deny_users = 1;
592 cupsdAddPrinterUser(p, value);
593 }
594 else
595 {
596 cupsdLogMessage(CUPSD_LOG_ERROR,
597 "Syntax error on line %d of classes.conf.", linenum);
598 return;
599 }
600 }
601 else if (!strcasecmp(line, "QuotaPeriod"))
602 {
603 if (value)
604 p->quota_period = atoi(value);
605 else
606 {
607 cupsdLogMessage(CUPSD_LOG_ERROR,
608 "Syntax error on line %d of classes.conf.", linenum);
609 return;
610 }
611 }
612 else if (!strcasecmp(line, "PageLimit"))
613 {
614 if (value)
615 p->page_limit = atoi(value);
616 else
617 {
618 cupsdLogMessage(CUPSD_LOG_ERROR,
619 "Syntax error on line %d of classes.conf.", linenum);
620 return;
621 }
622 }
623 else if (!strcasecmp(line, "KLimit"))
624 {
625 if (value)
626 p->k_limit = atoi(value);
627 else
628 {
629 cupsdLogMessage(CUPSD_LOG_ERROR,
630 "Syntax error on line %d of classes.conf.", linenum);
631 return;
632 }
633 }
634 else if (!strcasecmp(line, "OpPolicy"))
635 {
636 if (value)
637 cupsdSetString(&p->op_policy, value);
638 else
639 {
640 cupsdLogMessage(CUPSD_LOG_ERROR,
641 "Syntax error on line %d of classes.conf.", linenum);
642 return;
643 }
644 }
645 else if (!strcasecmp(line, "ErrorPolicy"))
646 {
647 if (value)
648 cupsdSetString(&p->error_policy, value);
649 else
650 {
651 cupsdLogMessage(CUPSD_LOG_ERROR,
652 "Syntax error on line %d of classes.conf.", linenum);
653 return;
654 }
655 }
656 else
657 {
658 /*
659 * Something else we don't understand...
660 */
661
662 cupsdLogMessage(CUPSD_LOG_ERROR,
663 "Unknown configuration directive %s on line %d of classes.conf.",
664 line, linenum);
665 }
666 }
667
668 cupsFileClose(fp);
669}
670
671
672/*
673 * 'cupsdSaveAllClasses()' - Save classes to the classes.conf file.
674 */
675
676void
677cupsdSaveAllClasses(void)
678{
679 cups_file_t *fp; /* classes.conf file */
680 char temp[1024]; /* Temporary string */
681 char backup[1024]; /* classes.conf.O file */
682 cupsd_printer_t *pclass; /* Current printer class */
683 int i; /* Looping var */
684 time_t curtime; /* Current time */
685 struct tm *curdate; /* Current date */
686
687
688 /*
689 * Create the classes.conf file...
690 */
691
692 snprintf(temp, sizeof(temp), "%s/classes.conf", ServerRoot);
693 snprintf(backup, sizeof(backup), "%s/classes.conf.O", ServerRoot);
694
695 if (rename(temp, backup))
696 {
697 if (errno != ENOENT)
698 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to backup classes.conf - %s",
699 strerror(errno));
700 }
701
702 if ((fp = cupsFileOpen(temp, "w")) == NULL)
703 {
704 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to save classes.conf - %s",
705 strerror(errno));
706
707 if (rename(backup, temp))
708 cupsdLogMessage(CUPSD_LOG_ERROR, "Unable to restore classes.conf - %s",
709 strerror(errno));
710 return;
711 }
712 else
713 cupsdLogMessage(CUPSD_LOG_INFO, "Saving classes.conf...");
714
715 /*
716 * Restrict access to the file...
717 */
718
719 fchown(cupsFileNumber(fp), RunUser, Group);
fa73b229 720 fchmod(cupsFileNumber(fp), 0600);
ef416fc2 721
722 /*
723 * Write a small header to the file...
724 */
725
726 curtime = time(NULL);
727 curdate = localtime(&curtime);
728 strftime(temp, sizeof(temp) - 1, "%Y-%m-%d %H:%M", curdate);
729
730 cupsFilePuts(fp, "# Class configuration file for " CUPS_SVERSION "\n");
731 cupsFilePrintf(fp, "# Written by cupsd on %s\n", temp);
732
733 /*
734 * Write each local class known to the system...
735 */
736
737 for (pclass = (cupsd_printer_t *)cupsArrayFirst(Printers);
738 pclass;
739 pclass = (cupsd_printer_t *)cupsArrayNext(Printers))
740 {
741 /*
742 * Skip remote destinations and regular printers...
743 */
744
745 if ((pclass->type & CUPS_PRINTER_REMOTE) ||
746 (pclass->type & CUPS_PRINTER_IMPLICIT) ||
747 !(pclass->type & CUPS_PRINTER_CLASS))
748 continue;
749
750 /*
751 * Write printers as needed...
752 */
753
754 if (pclass == DefaultPrinter)
755 cupsFilePrintf(fp, "<DefaultClass %s>\n", pclass->name);
756 else
757 cupsFilePrintf(fp, "<Class %s>\n", pclass->name);
758
759 if (pclass->info)
760 cupsFilePrintf(fp, "Info %s\n", pclass->info);
761
762 if (pclass->location)
763 cupsFilePrintf(fp, "Location %s\n", pclass->location);
764
765 if (pclass->state == IPP_PRINTER_STOPPED)
766 {
767 cupsFilePuts(fp, "State Stopped\n");
768 cupsFilePrintf(fp, "StateMessage %s\n", pclass->state_message);
769 }
770 else
771 cupsFilePuts(fp, "State Idle\n");
772
773 cupsFilePrintf(fp, "StateTime %d\n", (int)pclass->state_time);
774
775 if (pclass->accepting)
776 cupsFilePuts(fp, "Accepting Yes\n");
777 else
778 cupsFilePuts(fp, "Accepting No\n");
779
780 if (pclass->shared)
781 cupsFilePuts(fp, "Shared Yes\n");
782 else
783 cupsFilePuts(fp, "Shared No\n");
784
785 cupsFilePrintf(fp, "JobSheets %s %s\n", pclass->job_sheets[0],
786 pclass->job_sheets[1]);
787
788 for (i = 0; i < pclass->num_printers; i ++)
789 cupsFilePrintf(fp, "Printer %s\n", pclass->printers[i]->name);
790
791 cupsFilePrintf(fp, "QuotaPeriod %d\n", pclass->quota_period);
792 cupsFilePrintf(fp, "PageLimit %d\n", pclass->page_limit);
793 cupsFilePrintf(fp, "KLimit %d\n", pclass->k_limit);
794
795 for (i = 0; i < pclass->num_users; i ++)
796 cupsFilePrintf(fp, "%sUser %s\n", pclass->deny_users ? "Deny" : "Allow",
797 pclass->users[i]);
798
799 if (pclass->op_policy)
800 cupsFilePrintf(fp, "OpPolicy %s\n", pclass->op_policy);
801 if (pclass->error_policy)
802 cupsFilePrintf(fp, "ErrorPolicy %s\n", pclass->error_policy);
803
804 cupsFilePuts(fp, "</Class>\n");
805 }
806
807 cupsFileClose(fp);
808}
809
810
811/*
812 * 'cupsdUpdateImplicitClasses()' - Update the accepting state of implicit
813 * classes.
814 */
815
816void
817cupsdUpdateImplicitClasses(void)
818{
819 int i; /* Looping var */
820 cupsd_printer_t *pclass; /* Current class */
821 int accepting; /* printer-is-accepting-jobs value */
822
823
824 for (pclass = (cupsd_printer_t *)cupsArrayFirst(ImplicitPrinters);
825 pclass;
826 pclass = (cupsd_printer_t *)cupsArrayNext(ImplicitPrinters))
827 {
828 /*
829 * Loop through the printers to come up with a composite state...
830 */
831
832 for (i = 0, accepting = 0; i < pclass->num_printers; i ++)
833 if ((accepting = pclass->printers[i]->accepting) != 0)
834 break;
835
836 pclass->accepting = accepting;
837 }
838}
839
840
841/*
bd7854cb 842 * End of "$Id: classes.c 5083 2006-02-06 02:57:43Z mike $".
ef416fc2 843 */