You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-analyzer/ntopng/files/ntopng-3.0-pointer-cmp.patch

13 lines
525 B

diff -Naur ntopng-3.0-orig/src/AddressResolution.cpp ntopng-3.0/src/AddressResolution.cpp
--- ntopng-3.0-orig/src/AddressResolution.cpp 2017-06-01 00:18:57.000000000 -0700
+++ ntopng-3.0/src/AddressResolution.cpp 2017-11-27 23:13:50.158163187 -0800
@@ -52,7 +52,7 @@
u_int numeric_ip_len;
snprintf(query, sizeof(query), "%s", _numeric_ip);
- if((at = strchr(query, '@')) != '\0') at[0] = '\0';
+ if((at = strchr(query, '@')) != NULL) at[0] = '\0';
numeric_ip = query;
numeric_ip_len = strlen(numeric_ip)-1;