From: Christof Schmitt Date: Fri, 19 Jun 2020 19:43:54 +0000 (-0700) Subject: smbclient: Use NT_STATUS_NOTIFY_ENUM_DIR instead of STATUS_NOTIFY_ENUM_DIR X-Git-Tag: ldb-2.2.0~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c90253a1e1626e23321ef9fc200b68fb6dbdebb;p=thirdparty%2Fsamba.git smbclient: Use NT_STATUS_NOTIFY_ENUM_DIR instead of STATUS_NOTIFY_ENUM_DIR Signed-off-by: Christof Schmitt Reviewed-by: Gary Lockyer --- diff --git a/source3/client/client.c b/source3/client/client.c index d233becba22..f65293849d0 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -4515,7 +4515,7 @@ static int cmd_notify(void) status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL, true, talloc_tos(), &num_changes, &changes); - if (NT_STATUS_EQUAL(status, STATUS_NOTIFY_ENUM_DIR)) { + if (NT_STATUS_EQUAL(status, NT_STATUS_NOTIFY_ENUM_DIR)) { printf("NOTIFY_ENUM_DIR\n"); status = NT_STATUS_OK; }