summaryrefslogtreecommitdiff
path: root/source3/rpc_client/rpc_transport_tstream.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-09-14 17:56:30 +0200
committerStefan Metzmacher <metze@samba.org>2011-09-14 18:03:17 +0200
commitcc5f973884ae2c58c409ab3b59dae69bcc9a40c1 (patch)
tree0418cc3f5c443507b0c44912b56788030a439e59 /source3/rpc_client/rpc_transport_tstream.c
parenta6e8167e4a3d1e8239338bdbe9598c44a2c2ce2f (diff)
downloadsamba-cc5f973884ae2c58c409ab3b59dae69bcc9a40c1.tar.gz
samba-cc5f973884ae2c58c409ab3b59dae69bcc9a40c1.tar.bz2
samba-cc5f973884ae2c58c409ab3b59dae69bcc9a40c1.zip
s3:rpc_client: return NT_STATUS_CONNECTION_DISCONNECTED
We should return the same in all places and don't mix NT_STATUS_INVALID_CONNECTION and NT_STATUS_CONNECTION_INVALID. metze
Diffstat (limited to 'source3/rpc_client/rpc_transport_tstream.c')
-rw-r--r--source3/rpc_client/rpc_transport_tstream.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_client/rpc_transport_tstream.c b/source3/rpc_client/rpc_transport_tstream.c
index e223614ced..01e7a5edc8 100644
--- a/source3/rpc_client/rpc_transport_tstream.c
+++ b/source3/rpc_client/rpc_transport_tstream.c
@@ -186,7 +186,7 @@ static struct tevent_req *rpc_tstream_read_send(TALLOC_CTX *mem_ctx,
return NULL;
}
if (!rpc_tstream_is_connected(transp)) {
- tevent_req_nterror(req, NT_STATUS_CONNECTION_INVALID);
+ tevent_req_nterror(req, NT_STATUS_CONNECTION_DISCONNECTED);
return tevent_req_post(req, ev);
}
state->transp = transp;
@@ -270,7 +270,7 @@ static struct tevent_req *rpc_tstream_write_send(TALLOC_CTX *mem_ctx,
return NULL;
}
if (!rpc_tstream_is_connected(transp)) {
- tevent_req_nterror(req, NT_STATUS_CONNECTION_INVALID);
+ tevent_req_nterror(req, NT_STATUS_CONNECTION_DISCONNECTED);
return tevent_req_post(req, ev);
}
state->ev = ev;
@@ -366,7 +366,7 @@ static struct tevent_req *rpc_tstream_trans_send(TALLOC_CTX *mem_ctx,
}
if (!rpc_tstream_is_connected(transp)) {
- tevent_req_nterror(req, NT_STATUS_CONNECTION_INVALID);
+ tevent_req_nterror(req, NT_STATUS_CONNECTION_DISCONNECTED);
return tevent_req_post(req, ev);
}
state->ev = ev;