1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:rpc_server: return OBJECT_NAME_NOT_FOUND instead of PIPE_NOT_AVAILABLE

metze
This commit is contained in:
Stefan Metzmacher 2012-05-28 16:27:29 +02:00
parent 98c14ca61c
commit 6777e345b1

View File

@ -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;