Disable PCRE process searching to avoid linking against libprce, which would cause the build to fail due to a missing dependency. With the --without-pcre switch, build fails due to an undefined reference, so do it via CONFIGURE_VARS instead. Signed-off-by: Rosen Penev <rosenp@gmail.com> [disable PCRE process searching] Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
22 lines
843 B
Diff
22 lines
843 B
Diff
--- a/agent/mibgroup/mibII/interfaces.c
|
|
+++ b/agent/mibgroup/mibII/interfaces.c
|
|
@@ -1588,6 +1588,10 @@ Interface_Scan_Init(void)
|
|
struct ifnet *nnew;
|
|
char *stats, *ifstart = line;
|
|
|
|
+ /* Ignore interfaces with no statistics. */
|
|
+ if (strstr(line, "No statistics available."))
|
|
+ continue;
|
|
+
|
|
if (line[strlen(line) - 1] == '\n')
|
|
line[strlen(line) - 1] = '\0';
|
|
|
|
@@ -1620,7 +1624,7 @@ Interface_Scan_Init(void)
|
|
&coll) != 5)) {
|
|
if ((scan_line_to_use == scan_line_2_2)
|
|
&& !strstr(line, "No statistics available"))
|
|
- snmp_log(LOG_ERR,
|
|
+ snmp_log(LOG_DEBUG,
|
|
"/proc/net/dev data format error, line ==|%s|",
|
|
line);
|
|
continue;
|