diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-10-20 13:10:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:45:05 -0500 |
commit | 90550077b9c3eae1a2a15f5fce7ab4b1e05b1f30 (patch) | |
tree | af7426414cfb632eec66c611a7d8bc1c026f6885 /source4/ldap_server | |
parent | b4b75ddb5a45cf06c355433bc88b3f1ef37c915f (diff) | |
download | samba-90550077b9c3eae1a2a15f5fce7ab4b1e05b1f30.tar.gz samba-90550077b9c3eae1a2a15f5fce7ab4b1e05b1f30.tar.bz2 samba-90550077b9c3eae1a2a15f5fce7ab4b1e05b1f30.zip |
r11225: Remove pointless goto.
Andrew Bartlett
(This used to be commit 30f4ece4d2e55d2d50061f74a491d3f77551a6ae)
Diffstat (limited to 'source4/ldap_server')
-rw-r--r-- | source4/ldap_server/ldap_bind.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source4/ldap_server/ldap_bind.c b/source4/ldap_server/ldap_bind.c index 7a296d01ac..6525840232 100644 --- a/source4/ldap_server/ldap_bind.c +++ b/source4/ldap_server/ldap_bind.c @@ -100,11 +100,9 @@ static NTSTATUS ldapsrv_BindSASL(struct ldapsrv_call *call) if (!NT_STATUS_IS_OK(status)) { DEBUG(1, ("Failed to start GENSEC SASL[%s] server code: %s\n", req->creds.SASL.mechanism, nt_errstr(status))); - goto reply; } } -reply: reply = ldapsrv_init_reply(call, LDAP_TAG_BindResponse); if (!reply) { return NT_STATUS_NO_MEMORY; |