[dovecot-cvs] dovecot/src/auth passwd-file.c,1.1,1.2

cras at procontrol.fi cras at procontrol.fi
Mon Jan 27 04:00:01 EET 2003


Update of /home/cvs/dovecot/src/auth
In directory danu:/tmp/cvs-serv24859/src/auth

Modified Files:
	passwd-file.c 
Log Message:
Function typedefs now define them as functions, not function pointers.



Index: passwd-file.c
===================================================================
RCS file: /home/cvs/dovecot/src/auth/passwd-file.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- passwd-file.c	27 Jan 2003 01:33:40 -0000	1.1
+++ passwd-file.c	27 Jan 2003 01:59:59 -0000	1.2
@@ -126,7 +126,7 @@
 
 	pw->pool = pool_alloconly_create("passwd_file", 10240);;
 	pw->users = hash_create(default_pool, pw->pool, 100,
-				str_hash, (hash_cmp_callback_t)strcmp);
+				str_hash, (hash_cmp_callback_t *)strcmp);
 
 	input = i_stream_create_file(pw->fd, default_pool, 4096, FALSE);
 	for (;;) {




More information about the dovecot-cvs mailing list