diff options
author | Jeremy Allison <jra@samba.org> | 2000-10-06 03:21:49 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-10-06 03:21:49 +0000 |
commit | b07611f8159b0b3f42e7e02611be9f4d56de96f5 (patch) | |
tree | f7795170df8db5844594c0557ba768cfe06873da /source/printing/printfsp.c | |
parent | d4d55488397832df35b558564c263a307b0bb629 (diff) | |
download | samba-b07611f8159b0b3f42e7e02611be9f4d56de96f5.tar.gz |
Restructuring of vfs layer to include a "this" pointer - can be an fsp or
a conn struct depending on the call.
We need this to have a clean NT ACL call interface.
This will break any existing VFS libraries (that's why this is pre-release
code).
Andrew gets credit for this one :-) :-).
In addition - added Herb's WITH_PROFILE changes - Herb - please examine
the changes I've made to the smbd/reply.c code you added. The original
code was very ugly and I have replaced it with a
START_PROFILE(x)/END_PROFILE(x) pair using the preprocessor.
Please check this compiles ok with the --with-profile switch.
Jeremy.
Diffstat (limited to 'source/printing/printfsp.c')
-rw-r--r-- | source/printing/printfsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/printing/printfsp.c b/source/printing/printfsp.c index a1303eb4416..9b5a4877ee2 100644 --- a/source/printing/printfsp.c +++ b/source/printing/printfsp.c @@ -50,10 +50,6 @@ files_struct *print_fsp_open(connection_struct *conn,char *jobname) /* setup a full fsp */ fsp->print_jobid = jobid; fsp->fd = print_job_fd(jobid); - conn->vfs_ops.fstat(fsp->fd, &sbuf); - fsp->mode = sbuf.st_mode; - fsp->inode = sbuf.st_ino; - fsp->dev = sbuf.st_dev; GetTimeOfDay(&fsp->open_time); fsp->vuid = current_user.vuid; fsp->size = 0; @@ -73,6 +69,10 @@ files_struct *print_fsp_open(connection_struct *conn,char *jobname) string_set(&fsp->fsp_name,print_job_fname(jobid)); fsp->wbmpx_ptr = NULL; fsp->wcp = NULL; + conn->vfs_ops.fstat(fsp,fsp->fd, &sbuf); + fsp->mode = sbuf.st_mode; + fsp->inode = sbuf.st_ino; + fsp->dev = sbuf.st_dev; conn->num_files_open++; |