diff options
author | Varsha Rao <rvarsha016@gmail.com> | 2017-12-21 09:05:45 +0530 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2017-12-21 09:12:33 +0100 |
commit | 27de281d8aca84e3c841b3ae72a17616b1382ac4 (patch) | |
tree | feb6ffc6ae3e4d920a8ebbc5fba54c1f10b8f61e | |
parent | 7536415168c2fab15dd80d99e94dc36f4387c42d (diff) |
extensions: Add macro _DEFAULT_SOURCE.
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@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r-- | extensions/libxt_hashlimit.c | 1 | ||||
-rw-r--r-- | extensions/libxt_limit.c | 1 |
2 files changed, 2 insertions, 0 deletions
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@bilim.com (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@wallfire.org> */ #define _BSD_SOURCE 1 +#define _DEFAULT_SOURCE 1 #define _ISOC99_SOURCE 1 #include <math.h> #include <stdio.h> |