1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Enabled negative caching on attribute comparisons in the LDAP cache.

Fixed a problem where the default cache TTL was set in milliseconds
not microseconds causing the cache to time out almost immediately.
PR:
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90340 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Graham Leggett
2001-08-18 21:10:03 +00:00
parent ac47087550
commit 38c3d804d5
5 changed files with 50 additions and 23 deletions

View File

@@ -168,6 +168,7 @@ void *util_ldap_compare_node_copy(void *c)
node->attrib = util_ald_strdup(n->attrib);
node->value = util_ald_strdup(n->value);
node->lastcompare = n->lastcompare;
node->result = n->result;
return node;
}