diff options
author | Luca Deri <deri@ntop.org> | 2020-06-14 09:37:56 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-06-14 09:37:56 +0200 |
commit | 0ddc3a0052cfd3ad539ae0540aa4879bcae80ee5 (patch) | |
tree | 99779113d55d593862709ae3da78df7b62469de5 /src/lib | |
parent | 38e4910636bd6273b62e0b195c9d45483c39cc1a (diff) |
Fixed invalid assignment (typo)
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/ndpi_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index e7b6c293b..59780d288 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -6505,7 +6505,7 @@ int ndpi_check_dga_name(struct ndpi_detection_module_struct *ndpi_str, if(isdigit(name[i])) continue; else - tmp[j++] = tolower(tmp[i]); + tmp[j++] = tolower(name[i]); } len = j; |