1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

fix return code.

(This used to be commit d356baae802d36909c3c990b834a4a37aba736f4)
This commit is contained in:
Jelmer Vernooij 2008-04-15 19:33:15 +02:00
parent e3246e8720
commit 0a98fdd504

View File

@ -61,6 +61,8 @@ struct rpc_request *dcerpc_ndr_request_send(struct dcerpc_pipe *p, const struct
ret->opnum = opnum;
ret->pipe = p;
return ret;
}
@ -104,7 +106,7 @@ NTSTATUS dcerpc_ndr_request_recv(struct rpc_request *req)
return ndr_map_error2ntstatus(ndr_err);
}
return NT_STATUS_NOT_IMPLEMENTED;
return NT_STATUS_OK;
}
_PUBLIC_ NTSTATUS dcerpc_pipe_connect(TALLOC_CTX *parent_ctx, struct dcerpc_pipe **pp,