ASN_GAUGE (SNMP-SMIv2 Gauge32) is unsigned, not signed.
authorNathan Ward <nathan@primoris.co.nz>
Wed, 28 Oct 2015 12:46:29 +0000 (01:46 +1300)
committerMarc Fournier <marc.fournier@camptocamp.com>
Sun, 8 Nov 2015 16:12:54 +0000 (17:12 +0100)
src/snmp.c

index e178d3a..d4a29c7 100644 (file)
@@ -771,8 +771,7 @@ static value_t csnmp_value_list_to_value (struct variable_list *vl, int type,
     tmp_unsigned = (uint32_t) *vl->val.integer;
     tmp_signed = (int32_t) *vl->val.integer;
 
-    if ((vl->type == ASN_INTEGER)
-        || (vl->type == ASN_GAUGE))
+    if ((vl->type == ASN_INTEGER))
       prefer_signed = 1;
 
     DEBUG ("snmp plugin: Parsed int32 value is %"PRIu64".", tmp_unsigned);