summaryrefslogtreecommitdiff
path: root/source4/torture/raw/lockbench.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2007-05-29 07:32:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:53:01 -0500
commit9b95f57530c1f2c8b1d952f6035fcae8dde74b85 (patch)
tree83a07075965a8b459e20eaa6ed97c2ff26b0c0f5 /source4/torture/raw/lockbench.c
parent1fe9fd27490bf7901125c125f4609a8553a354ac (diff)
downloadsamba-9b95f57530c1f2c8b1d952f6035fcae8dde74b85.tar.gz
samba-9b95f57530c1f2c8b1d952f6035fcae8dde74b85.tar.bz2
samba-9b95f57530c1f2c8b1d952f6035fcae8dde74b85.zip
r23180: auto-reconnect on both NT_STATUS_END_OF_FILE and NT_STATUS_LOCAL_DISCONNECT
(This used to be commit 32a6c268a7963382dc05f53783ac22f7fd0de429)
Diffstat (limited to 'source4/torture/raw/lockbench.c')
-rw-r--r--source4/torture/raw/lockbench.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/torture/raw/lockbench.c b/source4/torture/raw/lockbench.c
index 361f509c40..e929218ead 100644
--- a/source4/torture/raw/lockbench.c
+++ b/source4/torture/raw/lockbench.c
@@ -212,7 +212,8 @@ static void lock_completion(struct smbcli_request *req)
NTSTATUS status = smbcli_request_simple_recv(req);
state->req = NULL;
if (!NT_STATUS_IS_OK(status)) {
- if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
+ if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE) ||
+ NT_STATUS_EQUAL(status, NT_STATUS_LOCAL_DISCONNECT)) {
talloc_free(state->tree);
state->tree = NULL;
num_connected--;
@@ -249,7 +250,8 @@ static void echo_completion(struct smbcli_request *req)
struct benchlock_state *state = talloc_get_type(req->async.private,
struct benchlock_state);
NTSTATUS status = smbcli_request_simple_recv(req);
- if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
+ if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE) ||
+ NT_STATUS_EQUAL(status, NT_STATUS_LOCAL_DISCONNECT)) {
talloc_free(state->tree);
state->tree = NULL;
num_connected--;