]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
uapi: fix linux/netfilter/xt_hashlimit.h userspace compilation error
authorDmitry V. Levin <ldv@altlinux.org>
Fri, 24 Feb 2017 00:23:20 +0000 (03:23 +0300)
committerPablo Neira Ayuso <pablo@netfilter.org>
Sat, 25 Feb 2017 12:32:04 +0000 (13:32 +0100)
Include <linux/limits.h> like some of uapi/linux/netfilter/xt_*.h
headers do to fix the following linux/netfilter/xt_hashlimit.h
userspace compilation error:

/usr/include/linux/netfilter/xt_hashlimit.h:90:12: error: 'NAME_MAX' undeclared here (not in a function)
  char name[NAME_MAX];

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
include/uapi/linux/netfilter/xt_hashlimit.h

index 3efc0ca18345e397e6c9704f2777d61b192ed455..79da349f10605be2aa890e10b563008082cfd9ff 100644 (file)
@@ -2,6 +2,7 @@
 #define _UAPI_XT_HASHLIMIT_H
 
 #include <linux/types.h>
+#include <linux/limits.h>
 #include <linux/if.h>
 
 /* timings are in milliseconds. */