Module Name:    src
Committed By:   joerg
Date:           Tue Dec  7 22:08:27 UTC 2010

Modified Files:
        src/crypto/dist/heimdal/lib/hx509: ks_p11.c

Log Message:
Remove useless conditional.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/crypto/dist/heimdal/lib/hx509/ks_p11.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/crypto/dist/heimdal/lib/hx509/ks_p11.c
diff -u src/crypto/dist/heimdal/lib/hx509/ks_p11.c:1.1 src/crypto/dist/heimdal/lib/hx509/ks_p11.c:1.2
--- src/crypto/dist/heimdal/lib/hx509/ks_p11.c:1.1	Sat Mar 22 09:42:41 2008
+++ src/crypto/dist/heimdal/lib/hx509/ks_p11.c	Tue Dec  7 22:08:27 2010
@@ -33,7 +33,7 @@
 
 #include "hx_locl.h"
 __RCSID("$Heimdal: ks_p11.c 22071 2007-11-14 20:04:50Z lha $"
-        "$NetBSD: ks_p11.c,v 1.1 2008/03/22 09:42:41 mlelstv Exp $");
+        "$NetBSD: ks_p11.c,v 1.2 2010/12/07 22:08:27 joerg Exp $");
 #ifdef HAVE_DLFCN_H
 #include <dlfcn.h>
 #endif
@@ -944,11 +944,7 @@
 	if (p->slot[i].flags & P11_SESSION_IN_USE)
 	    _hx509_abort("pkcs11 module release while session in use");
 	if (p->slot[i].flags & P11_SESSION) {
-	    int ret;
-
-	    ret = P11FUNC(p, CloseSession, (p->slot[i].session));
-	    if (ret != CKR_OK)
-		;
+	    P11FUNC(p, CloseSession, (p->slot[i].session));
 	}
 
 	if (p->slot[i].name)

Reply via email to