Overview
Comment: | Corrected type for debugging certificates |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ecfb2af250eb9a50dccca4f795fd3b42 |
User & Date: | rkeene on 2012-07-19 18:03:03 |
Other Links: | manifest | tags |
Context
2012-07-19
| ||
18:03 | Added support for logging to a file using CACKEY_DEBUG_LOGFILE environment variable check-in: b9df324b66 user: rkeene tags: trunk | |
18:03 | Corrected type for debugging certificates check-in: ecfb2af250 user: rkeene tags: trunk | |
16:06 | Updated to a zlib compiled by a newer mingw32-w64 check-in: e095e31b05 user: rkeene tags: trunk | |
Changes
Modified cackey.c from [dce840ec61] to [f9930320b1].
︙ | ︙ | |||
3370 3371 3372 3373 3374 3375 3376 | include_extra_certs = 0; } if (include_extra_certs) { num_extra_certs = sizeof(extra_certs) / sizeof(extra_certs[0]); | | | 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 | include_extra_certs = 0; } if (include_extra_certs) { num_extra_certs = sizeof(extra_certs) / sizeof(extra_certs[0]); CACKEY_DEBUG_PRINTF("Including %li DoD Certificates as objects on this token", num_extra_certs); } else { num_extra_certs = 0; } if (ids_found == NULL) { CACKEY_DEBUG_PRINTF("Error. ids_found is NULL"); |
︙ | ︙ |