summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMathieu Parent <math.parent@gmail.com>2018-05-04 22:22:38 +0200
committerAndrew Bartlett <abartlet@samba.org>2018-05-12 02:09:27 +0200
commit6fa770fd546c87e588d75cc143be2b20f59f5602 (patch)
tree8acd9127baaf7805b09843019abc10f860c7de12 /source4
parente8a3a43649ea7235aa54be29018ec92f8de628ea (diff)
downloadsamba-6fa770fd546c87e588d75cc143be2b20f59f5602.tar.gz
Fix spelling s/processs/process/
Signed-off-by: Mathieu Parent <math.parent@gmail.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Garming Sam <garming@catalyst.net.nz>
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/basic/locking.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/basic/locking.c b/source4/torture/basic/locking.c
index 98def5c09c1..e0e2971c9ad 100644
--- a/source4/torture/basic/locking.c
+++ b/source4/torture/basic/locking.c
@@ -567,7 +567,7 @@ static bool torture_locktest5(struct torture_context *tctx, struct smbcli_state
ret = NT_STATUS_IS_OK(smbcli_lock(cli2->tree, fnum2, 0, 4, 0, READ_LOCK));
EXPECTED(ret, false);
- torture_comment(tctx, "a different processs %s get a read lock on the first process lock stack\n", ret?"can":"cannot");
+ torture_comment(tctx, "a different process %s get a read lock on the first process lock stack\n", ret?"can":"cannot");
/* Unlock the process 2 lock. */
smbcli_unlock(cli2->tree, fnum2, 0, 4);
@@ -575,7 +575,7 @@ static bool torture_locktest5(struct torture_context *tctx, struct smbcli_state
ret = NT_STATUS_IS_OK(smbcli_lock(cli1->tree, fnum3, 0, 4, 0, READ_LOCK));
EXPECTED(ret, false);
- torture_comment(tctx, "the same processs on a different fnum %s get a read lock\n", ret?"can":"cannot");
+ torture_comment(tctx, "the same process on a different fnum %s get a read lock\n", ret?"can":"cannot");
/* Unlock the process 1 fnum3 lock. */
smbcli_unlock(cli1->tree, fnum3, 0, 4);
@@ -617,7 +617,7 @@ ret = NT_STATUS_IS_OK(smbcli_unlock(cli1->tree, fnum1, 0, 4)) &&
ret = NT_STATUS_IS_OK(smbcli_lock(cli2->tree, fnum2, 0, 4, 0, WRITE_LOCK));
EXPECTED(ret, true);
- torture_comment(tctx, "a different processs %s get a write lock on the unlocked stack\n", ret?"can":"cannot");
+ torture_comment(tctx, "a different process %s get a write lock on the unlocked stack\n", ret?"can":"cannot");
torture_assert_ntstatus_ok(tctx, smbcli_close(cli1->tree, fnum1),