Define _DEFAULT_SOURCE as _BSD_SOURCE is deprecated. https://sourceware.org/glibc/wiki/Release/2.20#Packaging_Changes This patch fixes the following warning: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp] # warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use # _DEFAULT_SOURCE" Signed-off-by: Varsha Rao <rvarsha016@xxxxxxxxx> --- extensions/libxt_hashlimit.c | 1 + extensions/libxt_limit.c | 1 + 2 files changed, 2 insertions(+) diff --git a/extensions/libxt_hashlimit.c b/extensions/libxt_hashlimit.c index e51ac1ae..ffe342a7 100644 --- a/extensions/libxt_hashlimit.c +++ b/extensions/libxt_hashlimit.c @@ -11,6 +11,7 @@ * Error corections by nmalykh@xxxxxxxxx (22.01.2005) */ #define _BSD_SOURCE 1 +#define _DEFAULT_SOURCE 1 #define _ISOC99_SOURCE 1 #include <inttypes.h> #include <math.h> diff --git a/extensions/libxt_limit.c b/extensions/libxt_limit.c index 5cc95c2e..c8ddca87 100644 --- a/extensions/libxt_limit.c +++ b/extensions/libxt_limit.c @@ -4,6 +4,7 @@ * Hervé Eychenne <rv@xxxxxxxxxxxx> */ #define _BSD_SOURCE 1 +#define _DEFAULT_SOURCE 1 #define _ISOC99_SOURCE 1 #include <math.h> #include <stdio.h> -- 2.14.3 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html