From 72a92b8c4cf59c5198edfa2e7d8f9719807f7ff3 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 11 Jun 2012 17:49:15 +0200 Subject: s3:torture: fix use of non-existent word (existant) --- source3/torture/torture.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 08294e6ab7..5fa633060c 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -6071,7 +6071,7 @@ bool torture_chkpath_test(int dummy) ret = check_error(__LINE__, status, ERRDOS, ERRbadfile, NT_STATUS_OBJECT_NAME_NOT_FOUND); } else { - printf("* chkpath on a non existant file should fail\n"); + printf("* chkpath on a non existent file should fail\n"); ret = False; } @@ -6211,10 +6211,10 @@ static bool run_eatest(int dummy) correct = False; } - /* Try and delete a non existant EA. */ + /* Try and delete a non existent EA. */ status = cli_set_ea_path(cli, fname, "foo", "", 0); if (!NT_STATUS_IS_OK(status)) { - printf("deleting non-existant EA 'foo' should succeed. %s\n", + printf("deleting non-existent EA 'foo' should succeed. %s\n", nt_errstr(status)); correct = False; } -- cgit