File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ if (COMMAND cmake_policy)
55endif (COMMAND cmake_policy)
66
77project (pkcs11-proxy C)
8- set (VERSION "0.1.3 " )
8+ set (VERSION "0.1.4 " )
99
1010set (CMAKE_C_STANDARD 99)
1111set (PKCS11_PROXY_SRCS gck-rpc-module.c gck-rpc-message.c gck-rpc-util.c egg-buffer.c)
Original file line number Diff line number Diff line change 1+ pkcs11-proxy (0.1.4) unstable; urgency=low
2+
3+ * Fix: Remove a forgotten debug printf
4+
5+ -- Konstantin Leboev <konstantin.leboev@gmail.com> Fri, 13 Nov 2020 16:26:10 +0300
6+
17pkcs11-proxy (0.1.3) unstable; urgency=low
28
39 * Fix: update a list of ulong attributes
Original file line number Diff line number Diff line change @@ -80,8 +80,6 @@ static pthread_mutex_t pkcs11_dispatchers_mutex = PTHREAD_MUTEX_INITIALIZER;
8080/* -----------------------------------------------------------------------------
8181 * LOGGING and DEBUGGING
8282 */
83- #undef DEBUG_OUTPUT
84- #define DEBUG_OUTPUT 1
8583#if DEBUG_OUTPUT
8684#define debug (x ) gck_rpc_debug x
8785#else
Original file line number Diff line number Diff line change @@ -2366,7 +2366,6 @@ static CK_FUNCTION_LIST functionList = {
23662366
23672367CK_RV C_GetFunctionList (CK_FUNCTION_LIST_PTR_PTR list )
23682368{
2369- printf ("C_GetFunctionList\n" );
23702369 return_val_if_fail (list , CKR_ARGUMENTS_BAD );
23712370
23722371 * list = & functionList ;
You can’t perform that action at this time.
0 commit comments