svn commit: lorikeet r603 - in trunk/heimdal/lib/krb5: .

lha at samba.org lha at samba.org
Thu Oct 19 11:43:48 GMT 2006


Author: lha
Date: 2006-10-19 11:43:47 +0000 (Thu, 19 Oct 2006)
New Revision: 603

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=603

Log:
merge from heimdal cvs - Does function typecasts instead of void * type-casts.
Modified:
   trunk/heimdal/lib/krb5/acache.c


Changeset:
Modified: trunk/heimdal/lib/krb5/acache.c
===================================================================
--- trunk/heimdal/lib/krb5/acache.c	2006-10-19 11:39:31 UTC (rev 602)
+++ trunk/heimdal/lib/krb5/acache.c	2006-10-19 11:43:47 UTC (rev 603)
@@ -37,7 +37,7 @@
 #include <dlfcn.h>
 #endif
 
-RCSID("$Id: acache.c,v 1.15 2006/03/27 04:22:23 lha Exp $");
+RCSID("$Id: acache.c,v 1.16 2006/10/19 11:41:38 lha Exp $");
 
 /* XXX should we fetch these for each open ? */
 static HEIMDAL_MUTEX acc_mutex = HEIMDAL_MUTEX_INITIALIZER;
@@ -113,7 +113,7 @@
 	return KRB5_CC_NOSUPP;
     }
 
-    init_func = dlsym(cc_handle, "cc_initialize");
+    init_func = (cc_initialize_func)dlsym(cc_handle, "cc_initialize");
     HEIMDAL_MUTEX_unlock(&acc_mutex);
     if (init_func == NULL) {
 	krb5_set_error_string(context, "Failed to find cc_initialize"



More information about the samba-cvs mailing list