1From 84157b11e8f27318f7291823c657f6313c3b60af Mon Sep 17 00:00:00 2001
2From: Jan Breuer <jan.breuer@jaybee.cz>
3Date: Tue, 12 Jul 2016 18:07:08 +0200
4Subject: [PATCH] Solve issue #25 - Removing type U64 from net-snmp related
5 code
6
7[Thomas: Backport to 2.3.1.]
8Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
9---
10 src/dep/snmp.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/src/dep/snmp.c b/src/dep/snmp.c
14index 5c08aaa..3086c86 100644
15--- a/src/dep/snmp.c
16+++ b/src/dep/snmp.c
17@@ -221,7 +221,7 @@ snmpHeaderIndexBest(struct snmpHeaderIndex *idx)
18
19 #define SNMP_LOCAL_VARIABLES			\
20 	static unsigned long long_ret;		\
21-	static U64 counter64_ret;		\
22+	static struct counter64 counter64_ret;	\
23 	static uint32_t ipaddr;			\
24 	Integer64 bigint;			\
25 	struct snmpHeaderIndex idx;		\
26--
272.14.4
28
29