2 AIX-specific printcap loading
3 Copyright (C) Jean-Pierre.Boulard@univ-rennes1.fr 1996
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 * This module implements AIX-specific printcap loading. Most of the code
22 * here was originally provided by Jean-Pierre.Boulard@univ-rennes1.fr in
23 * the Samba 1.9.14 release, and was formerly contained in pcap.c. It has
24 * been moved here and condensed as part of a larger effort to clean up and
25 * simplify the printcap code. -- Rob Foehl, 2004/12/06
31 BOOL
aix_cache_reload(void)
35 char *line
= NULL
, *p
;
36 pstring name
, comment
;
41 DEBUG(5, ("reloading aix printcap cache\n"));
43 if ((pfile
= x_fopen(lp_printcapname(), O_RDONLY
, 0)) == NULL
) {
44 DEBUG(0,( "Unable to open qconfig file %s for read!\n", lp_printcapname()));
49 /* scan qconfig file for searching <printername>: */
50 for (;(line
= fgets_slash(NULL
, sizeof(pstring
), pfile
)); safe_free(line
)) {
51 if (*line
== '*' || *line
== 0)
55 case 0: /* locate an entry */
56 if (*line
== '\t' || *line
== ' ')
59 if ((p
= strchr_m(line
, ':'))) {
61 p
= strtok(line
, ":");
62 if (strcmp(p
, "bsh") != 0) {
70 case 1: /* scanning device stanza */
71 if (*line
== '*' || *line
== 0)
74 if (*line
!= '\t' && *line
!= ' ') {
75 /* name is found without stanza device */
76 /* probably a good printer ??? */
78 if (!pcap_cache_add(name
, NULL
)) {
86 if (strstr_m(line
, "backend")) {
87 /* it's a device, not a virtual printer */
89 } else if (strstr_m(line
, "device")) {
90 /* it's a good virtual printer */
92 if (!pcap_cache_add(name
, NULL
)) {
108 /* this keeps fussy compilers happy */
109 void print_aix_dummy(void);
110 void print_aix_dummy(void) {}