summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorChristof Schmitt <cs@samba.org>2020-06-19 12:42:50 -0700
committerAndreas Schneider <asn@cryptomilk.org>2020-06-22 12:07:38 +0000
commit0b72c41189593f794b48d9119460fde0741a1174 (patch)
tree06a625a978041aee09e86e87ecd3c23532c6d23c /source3
parentd5f29c0765ace8c0192e6c39f2565ed35615732d (diff)
downloadsamba-0b72c41189593f794b48d9119460fde0741a1174.tar.gz
smbd: Use NT_STATUS_NOTIFY_ENUM_DIR instead of STATUS_NOTIFY_ENUM_DIR
Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/smb2_notify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_notify.c b/source3/smbd/smb2_notify.c
index 200a6e85d9a..75e591d1332 100644
--- a/source3/smbd/smb2_notify.c
+++ b/source3/smbd/smb2_notify.c
@@ -348,7 +348,7 @@ static void smbd_smb2_notify_reply(struct smb_request *smbreq,
if (!NT_STATUS_IS_OK(error_code)) {
/* nothing */
} else if (len == 0) {
- state->status = STATUS_NOTIFY_ENUM_DIR;
+ state->status = NT_STATUS_NOTIFY_ENUM_DIR;
} else {
state->out_output_buffer = data_blob_talloc(state, buf, len);
if (state->out_output_buffer.data == NULL) {