diff options
author | Luca Deri <deri@ntop.org> | 2019-06-16 16:05:13 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-06-16 16:05:13 +0200 |
commit | 1a3f2b3f0d16a0fad74a01bac5c0258fe005043f (patch) | |
tree | 580b43dd8c23602e7dbd194d8a9de93537a48371 /src/lib/protocols/ssl.c | |
parent | 5b7a08bac331d3d30f4ed29acb18f5c99c57883d (diff) |
Reworked SSL cipher handling
Diffstat (limited to 'src/lib/protocols/ssl.c')
-rw-r--r-- | src/lib/protocols/ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/protocols/ssl.c b/src/lib/protocols/ssl.c index eee31e94b..9b3a6c51b 100644 --- a/src/lib/protocols/ssl.c +++ b/src/lib/protocols/ssl.c @@ -317,7 +317,7 @@ static void stripCertificateTrailer(char *buffer, int buffer_len) { } /* check for punycode encoding */ - is_puny = check_punycode_string(buffer, buffer_len); + is_puny = ndpi_check_punycode_string(buffer, buffer_len); // not a punycode string - need more checks if(is_puny == 0) { |