[Pcsclite-cvs-commit] CVS PKCS11/src

CVS User rousseau ludovic.rousseau@free.fr
Tue, 24 May 2005 07:13:21 +0000


Update of /cvsroot/muscleapps/PKCS11/src
In directory haydn:/tmp/cvs-serv26201

Modified Files:
	p11x_object.c 
Log Message:
object_LogAttribute(): log the CKA_APPLICATION attribute.

Thanks to Geoffrey Elgey for the patch.


--- /cvsroot/muscleapps/PKCS11/src/p11x_object.c	2005/03/18 03:55:13	1.45
+++ /cvsroot/muscleapps/PKCS11/src/p11x_object.c	2005/05/24 07:13:21	1.46
@@ -1,6 +1,6 @@
 /******************************************************************************
 ** 
-**  $Id: p11x_object.c,v 1.45 2005/03/18 03:55:13 corcoran-guest Exp $
+**  $Id: p11x_object.c,v 1.46 2005/05/24 07:13:21 rousseau Exp $
 **
 **  Package: PKCS-11
 **  Author : Chris Osgood <oznet@mac.com>
@@ -1010,6 +1010,11 @@
             log_Log(LOG_LOW, "CKA_LABEL:%s", buf);
             log_Log(LOG_LOW, "CKA_LABEL (string): %.*s", attrib->ulValueLen, attrib->pValue);
             break;
+		case CKA_APPLICATION:
+			log_Log(LOG_LOW, "CKA_APPLICATION:%s", buf);
+			log_Log(LOG_LOW, "CKA_APPLICATION (string): %.*s",
+				attrib->ulValueLen, attrib->pValue);
+			break;
         case CKA_VALUE:
             log_Log(LOG_LOW, "CKA_VALUE:%s", buf);
             break;