From 7dd22bdb476e7565a755bf44040ed505d84e07a9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:58:02 +0200 Subject: s4:torture: fix use of non-existent word (existant) --- source4/torture/raw/notify.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/raw/notify.c') diff --git a/source4/torture/raw/notify.c b/source4/torture/raw/notify.c index 2a16d6ee3c..d9253f0353 100644 --- a/source4/torture/raw/notify.c +++ b/source4/torture/raw/notify.c @@ -189,7 +189,7 @@ static bool test_notify_dir(struct torture_context *mem_ctx, notify.nttrans.in.file.fnum = fnum; req = smb_raw_changenotify_send(cli->tree, ¬ify); - status = smbcli_unlink(cli->tree, BASEDIR "\\nonexistant.txt"); + status = smbcli_unlink(cli->tree, BASEDIR "\\nonexistent.txt"); CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND); /* (1st unlink) as the 2nd notify directly returns, @@ -219,7 +219,7 @@ static bool test_notify_dir(struct torture_context *mem_ctx, printf("(3rd notify) this notify will only see the 1st unlink\n"); req = smb_raw_changenotify_send(cli->tree, ¬ify); - status = smbcli_unlink(cli->tree, BASEDIR "\\nonexistant.txt"); + status = smbcli_unlink(cli->tree, BASEDIR "\\nonexistent.txt"); CHECK_STATUS(status, NT_STATUS_OBJECT_NAME_NOT_FOUND); printf("Testing notify on wildcard unlink for %d files\n", count-1); -- cgit