[dovecot-cvs] dovecot/src/auth auth-cache.c,1.2,1.3

cras at dovecot.org cras at dovecot.org
Fri Nov 5 02:56:55 EET 2004


Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv31315

Modified Files:
	auth-cache.c 
Log Message:
fix



Index: auth-cache.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/auth-cache.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- auth-cache.c	1 Nov 2004 12:18:04 -0000	1.2
+++ auth-cache.c	5 Nov 2004 00:56:52 -0000	1.3
@@ -66,6 +66,8 @@
 auth_cache_node_link_head(struct auth_cache *cache, struct cache_node *node)
 {
 	node->prev = cache->head;
+	node->next = NULL;
+
 	cache->head = node;
 	if (node->prev != NULL)
 		node->prev->next = node;



More information about the dovecot-cvs mailing list