Skip to content

Commit 4e5029b

Browse files
committed
Remove a forgotten debug printf
Signed-off-by: realmfoo <konstantin.leboev@gmail.com>
1 parent 244e92f commit 4e5029b

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if (COMMAND cmake_policy)
55
endif (COMMAND cmake_policy)
66

77
project(pkcs11-proxy C)
8-
set(VERSION "0.1.3")
8+
set(VERSION "0.1.4")
99

1010
set(CMAKE_C_STANDARD 99)
1111
set(PKCS11_PROXY_SRCS gck-rpc-module.c gck-rpc-message.c gck-rpc-util.c egg-buffer.c)

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
pkcs11-proxy (0.1.3) unstable; urgency=low
28

39
* Fix: update a list of ulong attributes

gck-rpc-dispatch.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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

gck-rpc-module.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2366,7 +2366,6 @@ static CK_FUNCTION_LIST functionList = {
23662366

23672367
CK_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;

0 commit comments

Comments
 (0)