diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-12-10 14:31:52 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-12-10 17:51:28 +1100 |
commit | 33cbe9c6310a7853a0189cd17b0f6c26f208cf16 (patch) | |
tree | 5a9ae007729250327ed32690da268f6567709c6d /source4/cldap_server | |
parent | 1b20002cc246f6bab6fe2369412bd4c65311785f (diff) | |
download | samba-33cbe9c6310a7853a0189cd17b0f6c26f208cf16.tar.gz samba-33cbe9c6310a7853a0189cd17b0f6c26f208cf16.tar.xz samba-33cbe9c6310a7853a0189cd17b0f6c26f208cf16.zip |
s4-server: use GUID_to_ndr_blob() in cldap and smb servers
Diffstat (limited to 'source4/cldap_server')
-rw-r--r-- | source4/cldap_server/netlogon.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source4/cldap_server/netlogon.c b/source4/cldap_server/netlogon.c index 049b0085b3..7072953121 100644 --- a/source4/cldap_server/netlogon.c +++ b/source4/cldap_server/netlogon.c @@ -104,7 +104,6 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx, if (domain_guid) { struct GUID binary_guid; struct ldb_val guid_val; - enum ndr_err_code ndr_err; /* By this means, we ensure we don't have funny stuff in the GUID */ @@ -114,10 +113,9 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx, } /* And this gets the result into the binary format we want anyway */ - ndr_err = ndr_push_struct_blob(&guid_val, mem_ctx, NULL, &binary_guid, - (ndr_push_flags_fn_t)ndr_push_GUID); - if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { - return NT_STATUS_INVALID_PARAMETER; + status = GUID_to_ndr_blob(&binary_guid, mem_ctx, &guid_val); + if (!NT_STATUS_IS_OK(status)) { + return status; } ret = ldb_search(sam_ctx, mem_ctx, &dom_res, NULL, LDB_SCOPE_SUBTREE, |