AIX cc fix

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@131 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aet 2002-01-03 07:33:28 +00:00
parent 0c2086857a
commit 891c3dbf88
1 changed files with 6 additions and 2 deletions

View File

@ -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;