Remove unused label
Remove unused var
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1157357 13f79535-47bb-0310-9956-
ffa450edef68
static authn_status authn_ldap_check_password(request_rec *r, const char *user,
const char *password)
{
- int failures = 0;
char filtbuf[FILTER_LENGTH];
authn_ldap_config_t *sec =
(authn_ldap_config_t *)ap_get_module_config(r->per_dir_config, &authnz_ldap_module);
return AUTH_GENERAL_ERROR;
}
-start_over:
-
/* There is a good AuthLDAPURL, right? */
if (sec->host) {
const char *binddn = sec->binddn;
}
st->retries = atoi(val);
- if (val < 0) {
+ if (st->retries < 0) {
return "LDAPRetries must be >= 0";
}