From: Christof Schmitt Date: Fri, 19 Jun 2020 19:56:56 +0000 (-0700) Subject: smbtorture: Use NT_STATUS_PENDING instead of STATUS_PENDING X-Git-Tag: ldb-2.2.0~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a877e9b475c7f696c6bbd556745ad1fe209903d;p=thirdparty%2Fsamba.git smbtorture: Use NT_STATUS_PENDING instead of STATUS_PENDING Signed-off-by: Christof Schmitt Reviewed-by: Gary Lockyer --- diff --git a/source4/torture/smb2/notify.c b/source4/torture/smb2/notify.c index 3ed4f1850dd..b65c116b75e 100644 --- a/source4/torture/smb2/notify.c +++ b/source4/torture/smb2/notify.c @@ -2564,7 +2564,7 @@ static bool torture_smb2_inotify_rename(struct torture_context *torture, req = smb2_notify_send(tree1, ¬ify); torture_assert_not_null_goto(torture, req, ok, done, "smb2_notify_send failed\n"); - while (!NT_STATUS_EQUAL(req->status, STATUS_PENDING)) { + while (!NT_STATUS_EQUAL(req->status, NT_STATUS_PENDING)) { if (tevent_loop_once(torture->ev) != 0) { goto done; }