diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-03-11 15:56:59 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-03-11 15:56:59 +0000 |
commit | 59100a45a05499c20d7ec74e736f5d2fdb28b3e4 (patch) | |
tree | 704187038fca8e88a0d6179922f4437014ed2ef8 | |
parent | bd3a6e6cc984e91621f06a52ddc87909d9d83abc (diff) | |
download | samba-59100a45a05499c20d7ec74e736f5d2fdb28b3e4.tar.gz samba-59100a45a05499c20d7ec74e736f5d2fdb28b3e4.tar.bz2 samba-59100a45a05499c20d7ec74e736f5d2fdb28b3e4.zip |
only try an ordinary file in lock6
(This used to be commit 965e23537c284dd312c714c111ec172d9a33b019)
-rw-r--r-- | source3/torture/torture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 015ed5b8eb..cb9685f6b9 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -1499,7 +1499,7 @@ static BOOL run_locktest5(int dummy) static BOOL run_locktest6(int dummy) { static struct cli_state cli; - char *fname[2] = { "\\lock6.txt", "\\pipe\\lsarpc"}; + char *fname[1] = { "\\lock6.txt" }; int i; int fnum; NTSTATUS status; @@ -1512,7 +1512,7 @@ static BOOL run_locktest6(int dummy) printf("starting locktest6\n"); - for (i=0;i<2;i++) { + for (i=0;i<1;i++) { printf("Testing %s\n", fname[i]); cli_unlink(&cli, fname[i]); |