Latest git doesn't compile for me on Fedora 9 due to various *MAX constants
being undefined. Below adds the include in 3 files which need it (although
I can't see why this isn't required in 1.4.1.1).
Signed-off-by: Phil Oester <kernel@linuxace.com>
Signed-off-by: Patrick McHardy <kaber@trash.net>
#include <stdlib.h>
#include <getopt.h>
#include <errno.h>
+#include <limits.h>
+
#include <xtables.h>
#include <linux/netfilter/xt_esp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <limits.h>
#include <xtables.h>
#include <linux/netfilter/xt_owner.h>
#include <stdlib.h>
#include <stddef.h>
#include <time.h>
+#include <limits.h>
+
#include <linux/netfilter/xt_time.h>
#include <xtables.h>
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*x))