From 10ab72855d2b857b5429b561442f5558f5f5e2f3 Mon Sep 17 00:00:00 2001 From: Sylvain Rochet Date: Sat, 14 Feb 2015 19:34:01 +0100 Subject: [PATCH] opt: fix build without SNMP_COMMUNITY_EXT define value omitted on #define SNMP_COMMUNITY_EXT in opt.h, default is 0 --- src/include/lwip/opt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/lwip/opt.h b/src/include/lwip/opt.h index c8c1f119..43629369 100644 --- a/src/include/lwip/opt.h +++ b/src/include/lwip/opt.h @@ -884,7 +884,7 @@ * Set this to 1 to enable support for dedicated write-access and trap communities. */ #ifndef SNMP_COMMUNITY_EXT -#define SNMP_COMMUNITY_EXT +#define SNMP_COMMUNITY_EXT 0 #endif #if SNMP_COMMUNITY_EXT