diff options
author | Stef Walter <stef@memberwebs.com> | 2004-04-26 16:50:46 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-04-26 16:50:46 +0000 |
commit | 7ede8b330f777a0ff5c960eaecc1850b84289620 (patch) | |
tree | 73ebca8037baeafb49fcb8fdae84de4cf0c7777f /daemon/ldap.c | |
parent | 6f493edb96610203727b35bbe45264a932bfa2a2 (diff) |
Completed debug nonce support on ldap handler
Diffstat (limited to 'daemon/ldap.c')
-rw-r--r-- | daemon/ldap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/daemon/ldap.c b/daemon/ldap.c index 3321c6a..c513ea7 100644 --- a/daemon/ldap.c +++ b/daemon/ldap.c @@ -1196,6 +1196,14 @@ int ldap_config(ha_context_t* context, const char* name, const char* value) return ha_confint(name, value, 0, 86400, &(ctx->ldap_timeout)); } +#ifdef _DEBUG + else if(strcmp(name, "digestdebugnonce") == 0) + { + ctx->debug_nonce = value; + return HA_OK; + } +#endif + return HA_FALSE; } |