diff options
author | Luca <deri@ntop.org> | 2023-09-27 17:05:12 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2023-09-27 17:05:12 +0200 |
commit | 77e5daf03e1ee7a8377a5a8906fe2c089c94ecf0 (patch) | |
tree | 4a53b889791a634d8572702ce4e78ec0f9286dce /example/ndpiReader.c | |
parent | ef3adb98308f14628e64b918f739e472de00cfcf (diff) |
Cleaned up mining datastructure
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index 711964695..2a7c3b232 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -1787,7 +1787,7 @@ static void printFlow(u_int32_t id, struct ndpi_flow_info *flow, u_int16_t threa if(flow->ssh_tls.tls_supported_versions) fprintf(out, "[TLS Supported Versions: %s]", flow->ssh_tls.tls_supported_versions); - if(flow->flow_extra_info[0] != '\0') fprintf(out, "[%s]", flow->flow_extra_info); + if(flow->mining.currency[0] != '\0') fprintf(out, "[currency: %s]", flow->mining.currency); if(flow->dns.geolocation_iata_code[0] != '\0') fprintf(out, "[GeoLocation: %s]", flow->dns.geolocation_iata_code); |