diff options
author | Volker Lendecke <vl@samba.org> | 2008-11-09 17:25:40 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-11-28 10:06:32 +0100 |
commit | 2bb90b7a88518844c1fcb8177cefcbc5b8ecda99 (patch) | |
tree | 6f31ac877b86bd64dddbe5946cce7fbaff6dc4cd /source3/include | |
parent | a790dcbc4ec2f3b29045ab9919cca5a9ca038e26 (diff) | |
download | samba-2bb90b7a88518844c1fcb8177cefcbc5b8ecda99.tar.gz samba-2bb90b7a88518844c1fcb8177cefcbc5b8ecda99.tar.bz2 samba-2bb90b7a88518844c1fcb8177cefcbc5b8ecda99.zip |
Remove "conn" parameter from np_open, smb_request contains it
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 71f12a6844..59df098d0d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6996,8 +6996,8 @@ pipes_struct *get_next_internal_pipe(pipes_struct *p); void init_rpc_pipe_hnd(void); bool fsp_is_np(struct files_struct *fsp); -NTSTATUS np_open(struct smb_request *smb_req, struct connection_struct *conn, - const char *name, struct files_struct **pfsp); +NTSTATUS np_open(struct smb_request *smb_req, const char *name, + struct files_struct **pfsp); NTSTATUS np_write(struct files_struct *fsp, const uint8_t *data, size_t len, ssize_t *nwritten); NTSTATUS np_read(struct files_struct *fsp, uint8_t *data, size_t len, |