diff options
author | Volker Lendecke <vl@samba.org> | 2010-06-12 13:17:51 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-06-12 15:42:55 +0200 |
commit | f589909eb1ef6117007948f54c291775141be645 (patch) | |
tree | 80960bf2bb1e9431a5baffad1a90c26e669f1a21 /source3/include | |
parent | 4a9b3e557f0a3b4049b301574461a39ef0e4ba09 (diff) | |
download | samba-f589909eb1ef6117007948f54c291775141be645.tar.gz samba-f589909eb1ef6117007948f54c291775141be645.tar.bz2 samba-f589909eb1ef6117007948f54c291775141be645.zip |
s3: change_notify_reply() does not need its "conn" argument
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 64c76a04be..dd3c2b2f1c 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -5770,14 +5770,13 @@ void reply_negprot(struct smb_request *req); /* The following definitions come from smbd/notify.c */ -void change_notify_reply(connection_struct *conn, - struct smb_request *req, +void change_notify_reply(struct smb_request *req, NTSTATUS error_code, uint32_t max_param, struct notify_change_buf *notify_buf, void (*reply_fn)(struct smb_request *req, - NTSTATUS error_code, - uint8_t *buf, size_t len)); + NTSTATUS error_code, + uint8_t *buf, size_t len)); NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter, bool recursive); NTSTATUS change_notify_add_request(struct smb_request *req, |