diff options
author | Daniele De Lorenzi <daniele.delorenzi@fastnetserv.net> | 2018-05-31 16:29:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-31 16:29:04 +0200 |
commit | 3b1047b0c8136b85010554ac31f7845c68b5898b (patch) | |
tree | 89827a5fc50b1d9fbab4e3698b84ac5a2f2f5d5d /example/ndpi_util.c | |
parent | 7989b8d9691d762b6afff58f7c8f65611611edba (diff) | |
parent | 2b4321b5c3f8f00b99f2e52aea520c39f81a2beb (diff) |
Merge pull request #9 from ntop/dev
updates from dev
Diffstat (limited to 'example/ndpi_util.c')
-rw-r--r-- | example/ndpi_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ndpi_util.c b/example/ndpi_util.c index 52cbc6f9b..977a246ec 100644 --- a/example/ndpi_util.c +++ b/example/ndpi_util.c @@ -561,9 +561,9 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl else if((flow->detected_protocol.app_protocol == NDPI_PROTOCOL_SSL) || (flow->detected_protocol.master_protocol == NDPI_PROTOCOL_SSL)) { snprintf(flow->ssh_ssl.client_info, sizeof(flow->ssh_ssl.client_info), "%s", - flow->ndpi_flow->protos.ssl.client_certificate); + flow->ndpi_flow->protos.stun_ssl.ssl.client_certificate); snprintf(flow->ssh_ssl.server_info, sizeof(flow->ssh_ssl.server_info), "%s", - flow->ndpi_flow->protos.ssl.server_certificate); + flow->ndpi_flow->protos.stun_ssl.ssl.server_certificate); } } |