gnome-keyring r1190 - in trunk: . pkcs11



Author: nnielsen
Date: Mon Jul 21 21:28:07 2008
New Revision: 1190
URL: http://svn.gnome.org/viewvc/gnome-keyring?rev=1190&view=rev

Log:
	* pkcs11/gkr-pkcs11-module.c: Build fix. Fixes bug #543221


Modified:
   trunk/ChangeLog
   trunk/pkcs11/gkr-pkcs11-module.c

Modified: trunk/pkcs11/gkr-pkcs11-module.c
==============================================================================
--- trunk/pkcs11/gkr-pkcs11-module.c	(original)
+++ trunk/pkcs11/gkr-pkcs11-module.c	Mon Jul 21 21:28:07 2008
@@ -257,7 +257,7 @@
  * not ready for use after this call. 
  */
 static CallSession*
-call_session_create ()
+call_session_create (void)
 {
 	CallSession *cs = calloc (1, sizeof (CallSession));
 	if (!cs)
@@ -1605,7 +1605,7 @@
 		return CKR_TOKEN_NOT_PRESENT;
 
 	/* Create the session */
-	cs = call_session_create (&cs);
+	cs = call_session_create ();
 	if (cs == NULL) {
 		ret = CKR_HOST_MEMORY;
 		goto cleanup;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]