Commit 0f27a60997e76552b9c8627043e4e171b87ad897
1 parent
8db96878
Exists in
master
and in
3 other branches
Adding CRL length in ssl trace.
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
src/lib3270/ssl/linux/getcrl.c
... | ... | @@ -489,10 +489,13 @@ int lib3270_get_X509_CRL(H3270 *hSession, SSL_ERROR_MESSAGE * message) |
489 | 489 | return -1; |
490 | 490 | } |
491 | 491 | |
492 | + trace_ssl(hSession,"CRL Data has %u bytes",(unsigned int) crl_data->length); | |
493 | + | |
492 | 494 | if(ct) |
493 | 495 | { |
494 | 496 | const unsigned char * data = crl_data->data.contents; |
495 | 497 | |
498 | + | |
496 | 499 | if(strcasecmp(ct,"application/pkix-crl") == 0) |
497 | 500 | { |
498 | 501 | // CRL File, convert it | ... | ... |