summaryrefslogtreecommitdiff
path: root/source3/smbd/close.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-04-16 06:22:31 +0000
committerAndrew Tridgell <tridge@samba.org>2000-04-16 06:22:31 +0000
commit54de56a1be8ede7476c741cd1631ad1ac8107fcc (patch)
treea89c1c9ef109ae03623c6080331da3a36f2bfc76 /source3/smbd/close.c
parent8a91379a00cade86a0b448c6a7c4e949cc58185c (diff)
downloadsamba-54de56a1be8ede7476c741cd1631ad1ac8107fcc.tar.gz
samba-54de56a1be8ede7476c741cd1631ad1ac8107fcc.tar.bz2
samba-54de56a1be8ede7476c741cd1631ad1ac8107fcc.zip
the changes to the main smb code
------------ The following series of commits are for the new tdb based printing backend. This completely replaces our old printing backend. Major changes include: - all print ops are now done in printing/*.c rather than scattered all over the place - system job ids are decoupled from SMB job ids - the lpq parsers don't need to be nearly so smart, they only need to parse the filename, the status and system job id - we can store lots more info about a job, including the full job name - the queue cache control is much better I also added a new utility routine file_lines_load() that loads a text file and parses it into lines. This is used in out lpq parsing and I also want to use it to replace all of our fgets() based code in other places. (This used to be commit d870542c2884510bd45fd5b54ff2157434d53f4c)
Diffstat (limited to 'source3/smbd/close.c')
-rw-r--r--source3/smbd/close.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/source3/smbd/close.c b/source3/smbd/close.c
index 4358f8fc2f..c4d323b1ba 100644
--- a/source3/smbd/close.c
+++ b/source3/smbd/close.c
@@ -100,6 +100,12 @@ static int close_normal_file(files_struct *fsp, BOOL normal_close)
close_filestruct(fsp);
+ if (normal_close && fsp->print_file) {
+ print_fsp_end(fsp);
+ file_free(fsp);
+ return 0;
+ }
+
if (lp_share_modes(SNUM(conn))) {
lock_share_entry_fsp(fsp);
del_share_mode(fsp);
@@ -115,10 +121,6 @@ static int close_normal_file(files_struct *fsp, BOOL normal_close)
err = fd_close(conn, fsp);
- /* NT uses smbclose to start a print - weird */
- if (normal_close && fsp->print_file)
- print_file(conn, fsp);
-
/* check for magic scripts */
if (normal_close) {
check_magic(fsp,conn);