From 7f06f7fb26ee52547d30b620a4137bca0395da6d Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Thu, 16 May 2024 01:44:50 +0200 Subject: open handler moved to the end of open message; conn authenticator has access to remainder of open req msg; improved logging and error handling; removed extensions --- ecp/test/init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ecp/test/init.c') diff --git a/ecp/test/init.c b/ecp/test/init.c index fbf17c6..7004794 100644 --- a/ecp/test/init.c +++ b/ecp/test/init.c @@ -26,6 +26,6 @@ static void conn_free(ECPConnection *conn) { int ecp_init(ECPContext *ctx) { int rv; - rv = ecp_ctx_init(ctx, NULL, conn_new, conn_free, handle_err); + rv = ecp_ctx_init(ctx, NULL, conn_new, conn_free, handle_err, printf); return rv; } -- cgit v1.2.3