From: Amos Jeffries Date: Sat, 3 Oct 2009 11:18:25 +0000 (+1300) Subject: Fix bracket omitted in rev9112 X-Git-Tag: SQUID_3_0_STABLE20~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbd955d59e522eebcd55f48497bef18ac6e2c323;p=thirdparty%2Fsquid.git Fix bracket omitted in rev9112 --- diff --git a/helpers/digest_auth/ldap/ldap_backend.c b/helpers/digest_auth/ldap/ldap_backend.c index 320f397117..71ecda5a2e 100644 --- a/helpers/digest_auth/ldap/ldap_backend.c +++ b/helpers/digest_auth/ldap/ldap_backend.c @@ -366,6 +366,7 @@ ldapconnect(void) exit(1); } else if (ldap_start_tls_s(ld, NULL, NULL) != LDAP_SUCCESS) { exit(1); + } #else fprintf(stderr, "TLS not supported with your LDAP library\n"); ldap_unbind(ld);