diff options
author | Michael Adam <obnox@samba.org> | 2012-06-11 17:49:15 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-12 07:21:44 +0200 |
commit | 72a92b8c4cf59c5198edfa2e7d8f9719807f7ff3 (patch) | |
tree | 81291f90337bd4c24949f512c9baa772e496ca65 | |
parent | 51a19364ffa5b4d24078cba640224645c60cf5e7 (diff) | |
download | samba-72a92b8c4cf59c5198edfa2e7d8f9719807f7ff3.tar.gz samba-72a92b8c4cf59c5198edfa2e7d8f9719807f7ff3.tar.bz2 samba-72a92b8c4cf59c5198edfa2e7d8f9719807f7ff3.zip |
s3:torture: fix use of non-existent word (existant)
-rw-r--r-- | source3/torture/torture.c | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |