diff options
author | Jeremy Allison <jra@samba.org> | 1998-01-16 06:29:38 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-01-16 06:29:38 +0000 |
commit | 6040d7a39e5d5ab426905aa79b871df815fb9b62 (patch) | |
tree | 0dfa1d20cf2ad7404fac5647c866413984875ce5 /source/printing | |
parent | ab8d615fe2004c3ca93dd2978ba988ea89d7fd74 (diff) | |
download | samba-6040d7a39e5d5ab426905aa79b871df815fb9b62.tar.gz samba-6040d7a39e5d5ab426905aa79b871df815fb9b62.tar.xz samba-6040d7a39e5d5ab426905aa79b871df815fb9b62.zip |
Makefile: Added new codepage - 866.
charset.c: Supporting code for codepage 866.
clientutil.c: Fix compile bug in little-used #define.
includes.h: Supporting code for codepage 866.
make_smbcodepage.c: Supporting code for codepage 866.
pcap.c: Fix bug for lpstat.
Jeremy.
Diffstat (limited to 'source/printing')
-rw-r--r-- | source/printing/pcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/printing/pcap.c b/source/printing/pcap.c index ff0a2b54772..bff81b8661d 100644 --- a/source/printing/pcap.c +++ b/source/printing/pcap.c @@ -267,7 +267,7 @@ BOOL pcap_printername_ok(char *pszPrintername, char *pszPrintcapname) #endif #ifdef AIX - if (strlocate(psz,"/qconfig") != NULL) + if (strlocate(psz,"/qconfig")) return(ScanQconfig(psz,pszPrintername)); #endif @@ -336,7 +336,7 @@ void pcap_printer_fn(void (*fn)()) #endif #ifdef AIX - if (strlocate(psz,"/qconfig") != NULL) + if (strlocate(psz,"/qconfig")) { ScanQconfig_fn(psz,fn); return; |