summaryrefslogtreecommitdiffstats
path: root/src/osf.c
diff options
context:
space:
mode:
authorFernando Fernandez Mancera <ffmancera@riseup.net>2018-08-07 11:44:06 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-08-07 17:23:46 +0200
commitcfa7f3aa145755a2abc6e6751e11bac95978cfe4 (patch)
tree05c7dec425e10c9428152e79f6fd009a00ed784c /src/osf.c
parentb8fc1f0e39d2ffc18c5db1b129b10f2bfe77e708 (diff)
src: use NFT_OSF_MAXGENRELEN instead of IFNAMSIZ in osf.c
As no "genre" in pf.os exceed 16 bytes of length, we reduce NFT_OSF_MAXGENRELEN parameter to 16 bytes and use it instead of IFNAMSIZ. Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/osf.c')
-rw-r--r--src/osf.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/osf.c b/src/osf.c
index f07a725c..131d54e4 100644
--- a/src/osf.c
+++ b/src/osf.c
@@ -4,8 +4,6 @@
#include <string.h>
#include <osf.h>
-#include <net/if.h>
-
static void osf_expr_print(const struct expr *expr, struct output_ctx *octx)
{
nft_print(octx, "osf name");
@@ -24,7 +22,7 @@ static const struct expr_ops osf_expr_ops = {
struct expr *osf_expr_alloc(const struct location *loc)
{
- unsigned int len = IFNAMSIZ * BITS_PER_BYTE;
+ unsigned int len = NFT_OSF_MAXGENRELEN * BITS_PER_BYTE;
const struct datatype *type = &string_type;
struct expr *expr;