diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-02-16 11:00:07 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-02-16 11:00:07 +0100 |
commit | 94abbead1b76e7aafee8c59233b096a3f03b35c8 (patch) | |
tree | f625f80285db169f3548295acdf448473fabceb0 /source4 | |
parent | 81e556f366322e3c07c1d7be4e989542380aed0e (diff) | |
download | samba-94abbead1b76e7aafee8c59233b096a3f03b35c8.tar.gz samba-94abbead1b76e7aafee8c59233b096a3f03b35c8.tar.bz2 samba-94abbead1b76e7aafee8c59233b096a3f03b35c8.zip |
s4:netlogon: implement netr_LogonGetCapabilities with NT_STATUS_NOT_IMPLEMENTED
This hopefully fixes bug #6109.
metze
Diffstat (limited to 'source4')
-rw-r--r-- | source4/rpc_server/netlogon/dcerpc_netlogon.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source4/rpc_server/netlogon/dcerpc_netlogon.c b/source4/rpc_server/netlogon/dcerpc_netlogon.c index a7665b0e14..ac7ce73f2a 100644 --- a/source4/rpc_server/netlogon/dcerpc_netlogon.c +++ b/source4/rpc_server/netlogon/dcerpc_netlogon.c @@ -953,12 +953,13 @@ static WERROR dcesrv_netr_NetrEnumerateTrustedDomains(struct dcesrv_call_state * /* - netr_NETRLOGONDUMMYROUTINE1 + netr_LogonGetCapabilities */ -static WERROR dcesrv_netr_NETRLOGONDUMMYROUTINE1(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, - struct netr_NETRLOGONDUMMYROUTINE1 *r) +static NTSTATUS dcesrv_netr_LogonGetCapabilities(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx, + struct netr_LogonGetCapabilities *r) { - DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR); + /* we don't support AES yet */ + return NT_STATUS_NOT_IMPLEMENTED; } |