Overview
Comment: | Updated to print an error in debug mode if we run across compressed certificates without zlib support available |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ecd7178afb50372af790fcb5ef7b3798 |
User & Date: | rkeene on 2016-02-15 08:31:06 |
Other Links: | manifest | tags |
Context
2016-02-15
| ||
08:36 | Updated to create better Debian package (untested) check-in: 3b8c1a6846 user: rkeene tags: trunk | |
08:31 | Updated to print an error in debug mode if we run across compressed certificates without zlib support available check-in: ecd7178afb user: rkeene tags: trunk | |
08:30 | ChromeOS: Minor cleanup in the test case check-in: 925edeaa39 user: rkeene tags: trunk | |
Changes
Modified cackey.c from [788bc7d9fe] to [6bf4e65a64].
︙ | |||
2596 2597 2598 2599 2600 2601 2602 | 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 | - + | curr_id->certificate = NULL; outidx--; continue; } |
︙ | |||
2651 2652 2653 2654 2655 2656 2657 2658 2659 | 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 | + + + - | curr_id->certificate = tmpbuf; curr_id->certificate_len = tmpbuflen; } else { CACKEY_DEBUG_PRINTF("Decompressing failed! uncompress() returned %i", uncompress_ret); free(tmpbuf); } #else CACKEY_DEBUG_PRINTF("Error. We got a compressed certificate but we do not have zlib. Hoping for the best."); #endif } } |
︙ |