From bb905ec1ec5760c9324930cee6253d407947a86a Mon Sep 17 00:00:00 2001 From: Nuno Goncalves Date: Sat, 28 Jan 2017 00:59:28 +0100 Subject: [PATCH] pkcs11-tool: small format fix (#950) Signed-off-by: Nuno Goncalves --- src/tools/pkcs11-tool.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/pkcs11-tool.c b/src/tools/pkcs11-tool.c index 4e21314c..99758dc6 100644 --- a/src/tools/pkcs11-tool.c +++ b/src/tools/pkcs11-tool.c @@ -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; }