diff options
-rw-r--r-- | ckcapi-object.c | 2 | ||||
-rw-r--r-- | ckcapi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ckcapi-object.c b/ckcapi-object.c index 5c2c6cc..7755d25 100644 --- a/ckcapi-object.c +++ b/ckcapi-object.c @@ -146,7 +146,7 @@ attribute_data_type(CK_ATTRIBUTE_TYPE type) case CKA_ALLOWED_MECHANISMS: case CKA_UNWRAP_TEMPLATE: default: - DBG(("unknown attribute type: %x\n", type)); + DBG(("unknown attribute type: %x", type)); return DATA_UNKNOWN; }; } @@ -310,7 +310,7 @@ CC_C_Initialize(CK_VOID_PTR init_args) /* * When the CKF_OS_LOCKING_OK flag isn't set and mutex function pointers are supplied - * by an application, return an error. DBus must be able to use its own locks. + * by an application, return an error. We must be able to use our own locks. */ if(!(args->flags & CKF_OS_LOCKING_OK) && (args->CreateMutex != NULL)) RETURN(CKR_CANT_LOCK); |