s3:torture: fix use of non-existent word (existant)
authorMichael Adam <obnox@samba.org>
Mon, 11 Jun 2012 15:49:15 +0000 (17:49 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 12 Jun 2012 05:21:44 +0000 (07:21 +0200)
source3/torture/torture.c

index 08294e6ab7f2425df0e4128152e759c846690fc9..5fa633060cd1a5e8c92c90e82fa8eb8900f098d8 100644 (file)
@@ -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;
        }