diff options
author | Luca Deri <deri@ntop.org> | 2025-05-29 09:18:37 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2025-05-29 09:18:37 +0200 |
commit | bebacc853d6157e779c345330535ac94dcf5d70d (patch) | |
tree | 38a3ae44eb84c05b1a4c959df610112802683919 /example/ndpiReader.c | |
parent | f751fd33322a91bb8e254e191b43d301c7f38520 (diff) |
Changed variable name
Diffstat (limited to 'example/ndpiReader.c')
-rw-r--r-- | example/ndpiReader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index ed9df9218..b3753d412 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -95,7 +95,7 @@ static ndpi_serialization_format serialization_format = ndpi_serialization_forma static char* domain_to_check = NULL; static char* ip_port_to_check = NULL; static u_int8_t ignore_vlanid = 0; -char *_protocolsDirPath = NULL; /**< Directory containing protocol files */ +char *protocolsDirPath = NULL; /**< Directory containing protocol files */ FILE *fingerprint_fp = NULL; /**< for flow fingerprint export */ #ifdef __linux__ static char *bind_mask = NULL; @@ -1535,7 +1535,7 @@ static void parse_parameters(int argc, char **argv) break; case 180: - _protocolsDirPath = optarg; + protocolsDirPath = optarg; break; default: |