diff options
author | Jeremy Allison <jra@samba.org> | 2003-07-24 07:02:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-07-24 07:02:55 +0000 |
commit | a9c0fcfa371896755975b8c7267fae19203bee8e (patch) | |
tree | 77a7849ce7ca1590dd7b71dead38d6debef110f1 /source3 | |
parent | 0c9433c03188a2d1b49318dd8535d10b7805ce42 (diff) | |
download | samba-a9c0fcfa371896755975b8c7267fae19203bee8e.tar.gz samba-a9c0fcfa371896755975b8c7267fae19203bee8e.tar.bz2 samba-a9c0fcfa371896755975b8c7267fae19203bee8e.zip |
Some fclose -> x_fclose found by Tony Jago.
Jeremy.
(This used to be commit 919078cf397155ede0169ce95a726d0fdbef696a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/printing/pcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/pcap.c b/source3/printing/pcap.c index 1bdbf4a789..a5fb53a320 100644 --- a/source3/printing/pcap.c +++ b/source3/printing/pcap.c @@ -208,7 +208,7 @@ static BOOL ScanQconfig(char *psz,char *pszPrintername) /* probably a good printer ??? */ free (line); SAFE_FREE(pName); - fclose(pfile); + x_fclose(pfile); return(True); } @@ -222,7 +222,7 @@ static BOOL ScanQconfig(char *psz,char *pszPrintername) /* it's a good virtual printer */ free (line); SAFE_FREE(pName); - fclose(pfile); + x_fclose(pfile); return(True); } break; |