s4:torture/smb2: s/smb2cli_unlock/test_smb2_unlock
authorStefan Metzmacher <metze@samba.org>
Wed, 6 Jul 2011 15:52:33 +0000 (17:52 +0200)
committerStefan Metzmacher <metze@samba.org>
Wed, 6 Jul 2011 17:07:42 +0000 (19:07 +0200)
metze

Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Wed Jul  6 19:07:42 CEST 2011 on sn-devel-104

source4/torture/smb2/lock.c

index 078143e91bd29d5c50fde0b1463847d3eefcb64c..348312657b43ac58a6f2e767047a0aee95a4c820 100644 (file)
@@ -2632,8 +2632,8 @@ static NTSTATUS test_smb2_lock(struct smb2_tree *tree, struct smb2_handle h,
        return status;
 }
 
-static NTSTATUS smb2cli_unlock(struct smb2_tree *tree, struct smb2_handle h,
-                              uint64_t offset, uint64_t length)
+static NTSTATUS test_smb2_unlock(struct smb2_tree *tree, struct smb2_handle h,
+                                uint64_t offset, uint64_t length)
 {
        struct smb2_lock lck;
        struct smb2_lock_element el[1];
@@ -2731,7 +2731,7 @@ static bool test_overlap(struct torture_context *torture,
 
        ret = NT_STATUS_IS_OK(test_smb2_lock(tree, h, 110, 4, false)) &&
              NT_STATUS_IS_OK(test_smb2_lock(tree, h, 112, 4, false)) &&
-             NT_STATUS_IS_OK(smb2cli_unlock(tree, h, 110, 6));
+             NT_STATUS_IS_OK(test_smb2_unlock(tree, h, 110, 6));
        EXPECTED(ret, false);
        torture_comment(torture, "the same handle %s coalesce read locks\n",
                                 ret?"can":"cannot");