diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-05-17 21:30:36 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-05-17 21:30:36 +1000 |
commit | 38c68f1d5bf972f2473a41bf15c4a54efdc38b7e (patch) | |
tree | 08e0b0d9363b9b5582ecd3e1651c6df93de12b8c | |
parent | d975cd9d8c3fc504a8ccbb80f239d4648ac0c304 (diff) | |
download | samba-38c68f1d5bf972f2473a41bf15c4a54efdc38b7e.tar.gz samba-38c68f1d5bf972f2473a41bf15c4a54efdc38b7e.tar.bz2 samba-38c68f1d5bf972f2473a41bf15c4a54efdc38b7e.zip |
Ensure we don't send a reply if we couldn't push the CLDAP blob
Andrew Bartlett
(This used to be commit a8ec36eba79f96940f314520f97d23181bc9cfc5)
-rw-r--r-- | source4/libcli/cldap/cldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/cldap/cldap.c b/source4/libcli/cldap/cldap.c index 3867f3d3fd..860bd358d5 100644 --- a/source4/libcli/cldap/cldap.c +++ b/source4/libcli/cldap/cldap.c @@ -712,7 +712,7 @@ NTSTATUS cldap_netlogon_reply(struct cldap_socket *cldap, status = push_netlogon_samlogon_response(&blob, tmp_ctx, cldap->iconv_convenience, netlogon); if (!NT_STATUS_IS_OK(status)) { - + return status; } reply.messageid = message_id; reply.dest = src; |