From f07031aa989ee8e4204687b0bd30d823727c9950 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Thu, 6 Feb 2014 10:16:47 +0100 Subject: [PATCH] debug_ecp: don't print Z, always 1 --- library/debug.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/library/debug.c b/library/debug.c index 371cbf95c..4e674e1e2 100644 --- a/library/debug.c +++ b/library/debug.c @@ -149,10 +149,6 @@ void debug_print_ecp( const ssl_context *ssl, int level, snprintf( str, maxlen, "%s(Y)", text ); str[maxlen] = '\0'; debug_print_mpi( ssl, level, file, line, str, &X->Y ); - - snprintf( str, maxlen, "%s(Z)", text ); - str[maxlen] = '\0'; - debug_print_mpi( ssl, level, file, line, str, &X->Z ); } #endif /* POLARSSL_ECP_C */