From 891c3dbf88a76a9b2a8ae996533249bdea27d5a0 Mon Sep 17 00:00:00 2001 From: aet Date: Thu, 3 Jan 2002 07:33:28 +0000 Subject: [PATCH] AIX cc fix git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@131 c6295689-39f2-0310-b995-f0e70906c6a9 --- src/tools/opensc-tool.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/tools/opensc-tool.c b/src/tools/opensc-tool.c index cdbc80d5..520ed91e 100644 --- a/src/tools/opensc-tool.c +++ b/src/tools/opensc-tool.c @@ -665,9 +665,13 @@ int send_apdu(void) for (r = 0; r < len0; r++) printf("%02X ", buf[r]); printf("\n"); -// ctx->debug = 5; +#if 0 + ctx->debug = 5; +#endif r = sc_transmit_apdu(card, &apdu); -// ctx->debug = opt_debug; +#if 0 + ctx->debug = opt_debug; +#endif if (r) { fprintf(stderr, "APDU transmit failed: %s\n", sc_strerror(r)); return 1;