From 6777e345b1512345e8b74dfe0956982afc59895e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 28 May 2012 16:27:29 +0200 Subject: s3:rpc_server: return OBJECT_NAME_NOT_FOUND instead of PIPE_NOT_AVAILABLE metze --- source3/rpc_server/srv_pipe_hnd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/rpc_server/srv_pipe_hnd.c b/source3/rpc_server/srv_pipe_hnd.c index e4172e7252..0c615bdc37 100644 --- a/source3/rpc_server/srv_pipe_hnd.c +++ b/source3/rpc_server/srv_pipe_hnd.c @@ -470,7 +470,7 @@ NTSTATUS np_open(TALLOC_CTX *mem_ctx, const char *name, if (handle->private_data == NULL) { TALLOC_FREE(handle); - return NT_STATUS_PIPE_NOT_AVAILABLE; + return NT_STATUS_OBJECT_NAME_NOT_FOUND; } *phandle = handle; -- cgit