diff options
author | Volker Lendecke <vl@samba.org> | 2008-11-04 22:04:58 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-11-08 10:42:20 +0100 |
commit | 87d4138d095bd6554ded80a94fb706bb754ae4c6 (patch) | |
tree | ff80c5ca10a2f37aad181bc339e160a2cef1a1fc /source3/include | |
parent | 8d4aaefd86915309cf0674afecfad8e923e80522 (diff) | |
download | samba-87d4138d095bd6554ded80a94fb706bb754ae4c6.tar.gz samba-87d4138d095bd6554ded80a94fb706bb754ae4c6.tar.bz2 samba-87d4138d095bd6554ded80a94fb706bb754ae4c6.zip |
Converting notify.c to store a request, not an inbuf
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 482027e8dc..96ed71657d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -7973,11 +7973,11 @@ void reply_negprot(struct smb_request *req); /* The following definitions come from smbd/notify.c */ void change_notify_reply(connection_struct *conn, - const uint8 *request_buf, uint32 max_param, + struct smb_request *req, uint32 max_param, struct notify_change_buf *notify_buf); NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter, bool recursive); -NTSTATUS change_notify_add_request(const struct smb_request *req, +NTSTATUS change_notify_add_request(struct smb_request *req, uint32 max_param, uint32 filter, bool recursive, struct files_struct *fsp); |