Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 634104
Collapse All | Expand All

(-)ntopng-3.0-orig/src/AddressResolution.cpp (-1 / +1 lines)
Lines 52-58 Link Here
52
  u_int numeric_ip_len;
52
  u_int numeric_ip_len;
53
53
54
  snprintf(query, sizeof(query), "%s", _numeric_ip);
54
  snprintf(query, sizeof(query), "%s", _numeric_ip);
55
  if((at = strchr(query, '@')) != '\0') at[0] = '\0';
55
  if((at = strchr(query, '@')) != NULL) at[0] = '\0';
56
  numeric_ip = query;
56
  numeric_ip = query;
57
  numeric_ip_len = strlen(numeric_ip)-1;
57
  numeric_ip_len = strlen(numeric_ip)-1;
58
58

Return to bug 634104