pkcs11-tool: small format fix (#950)

Signed-off-by: Nuno Goncalves <nunojpg@gmail.com>
This commit is contained in:
Nuno Goncalves 2017-01-28 00:59:28 +01:00 committed by Frank Morgner
parent 6aa52ce753
commit bb905ec1ec
1 changed files with 3 additions and 3 deletions

View File

@ -3301,7 +3301,7 @@ static void show_cert(CK_SESSION_HANDLE sess, CK_OBJECT_HANDLE obj)
unsigned char *id;
char *label;
printf("Certificate Object, type = ");
printf("Certificate Object; type = ");
switch (cert_type) {
case CKC_X_509:
printf("X.509 cert\n");
@ -3310,10 +3310,10 @@ static void show_cert(CK_SESSION_HANDLE sess, CK_OBJECT_HANDLE obj)
printf("X.509 attribute cert\n");
break;
case CKC_VENDOR_DEFINED:
printf("vendor defined");
printf("vendor defined\n");
break;
default:
printf("; unknown cert type\n");
printf("unknown cert type\n");
break;
}