From ec044e826ed821b007dd892a982f2032af0ae710 Mon Sep 17 00:00:00 2001 From: Marco Date: Wed, 1 Mar 2017 15:19:25 +0100 Subject: [PATCH] Replaced old LWIP_SNMPV3_GET_ENGINE_BOOTS macro. Replaced old LWIP_SNMPV3_GET_ENGINE_BOOTS macro with the new snmpv3_get_engine_boots_internal function. --- src/apps/snmp/snmpv3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/snmp/snmpv3.c b/src/apps/snmp/snmpv3.c index 69fb3a0a..9eef2d20 100644 --- a/src/apps/snmp/snmpv3.c +++ b/src/apps/snmp/snmpv3.c @@ -124,7 +124,7 @@ snmpv3_build_priv_param(u8_t* priv_param) } #else /* Based on RFC3414 */ static u32_t ctr; - u32_t boots = LWIP_SNMPV3_GET_ENGINE_BOOTS(); + u32_t boots = snmpv3_get_engine_boots_internal(); SMEMCPY(&priv_param[0], &boots, 4); SMEMCPY(&priv_param[4], &ctr, 4); ctr++;