summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-04-05 14:39:01 +0000
committer/C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org </C=EU/ST=EU/CN=Pablo Neira Ayuso/emailAddress=pablo@netfilter.org>2008-04-05 14:39:01 +0000
commit1706e38b0afce344f8c18d803e4b75013194a227 (patch)
treef77e4ea1cc63e8d7d99d11ac602a2f9d277dca65
parent19e26b39ba4b571b36883cb4fc08a16d4b7b1c38 (diff)
Type of the raw.mac_len key was set to string but this is an unsigned
interger. This patch fix this in the NFLOG module. Signed-off-by: Eric Leblond <eric@inl.fr>
-rw-r--r--input/packet/ulogd_inppkt_NFLOG.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/input/packet/ulogd_inppkt_NFLOG.c b/input/packet/ulogd_inppkt_NFLOG.c
index 802e417..195f6cc 100644
--- a/input/packet/ulogd_inppkt_NFLOG.c
+++ b/input/packet/ulogd_inppkt_NFLOG.c
@@ -209,7 +209,7 @@ static struct ulogd_key output_keys[] = {
},
},
{
- .type = ULOGD_RET_STRING,
+ .type = ULOGD_RET_UINT16,
.flags = ULOGD_RETF_NONE,
.name = "raw.mac_len",
},