2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-2000
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 /***************************************************************************
25 auto-load printer services
26 ***************************************************************************/
27 void add_all_printers(void)
29 int printers
= lp_servicenumber(PRINTERS_NAME
);
31 if (printers
< 0) return;
33 pcap_printer_fn(lp_add_one_printer
);
36 /***************************************************************************
37 auto-load some homes and printer services
38 ***************************************************************************/
39 static void add_auto_printers(void)
43 char *str
= strdup(lp_auto_services());
47 printers
= lp_servicenumber(PRINTERS_NAME
);
54 for (p
=strtok(str
,LIST_SEP
);p
;p
=strtok(NULL
,LIST_SEP
)) {
55 if (lp_servicenumber(p
) >= 0) continue;
57 if (pcap_printername_ok(p
,NULL
)) {
58 lp_add_printer(p
,printers
);
65 /***************************************************************************
66 load automatic printer services
67 ***************************************************************************/
68 void load_printers(void)
71 if (lp_load_printers())