From fde395370ead306b770a3d4685e4bc1d6972266d Mon Sep 17 00:00:00 2001 From: Yasuyuki KOZAKAI Date: Thu, 28 Jun 2007 16:41:50 +0000 Subject: Removes some KERNEL_64_USERSPACE_32 because linux 2.6 has compat layer --- extensions/libip6t_mark.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'extensions/libip6t_mark.c') diff --git a/extensions/libip6t_mark.c b/extensions/libip6t_mark.c index b831cfe4..9c7f1371 100644 --- a/extensions/libip6t_mark.c +++ b/extensions/libip6t_mark.c @@ -39,19 +39,11 @@ parse(int c, char **argv, int invert, unsigned int *flags, char *end; case '1': check_inverse(optarg, &invert, &optind, 0); -#ifdef KERNEL_64_USERSPACE_32 - markinfo->mark = strtoull(optarg, &end, 0); - if (*end == '/') { - markinfo->mask = strtoull(end+1, &end, 0); - } else - markinfo->mask = 0xffffffffffffffffULL; -#else markinfo->mark = strtoul(optarg, &end, 0); if (*end == '/') { markinfo->mask = strtoul(end+1, &end, 0); } else markinfo->mask = 0xffffffff; -#endif if (*end != '\0' || end == optarg) exit_error(PARAMETER_PROBLEM, "Bad MARK value `%s'", optarg); if (invert) @@ -65,16 +57,6 @@ parse(int c, char **argv, int invert, unsigned int *flags, return 1; } -#ifdef KERNEL_64_USERSPACE_32 -static void -print_mark(unsigned long long mark, unsigned long long mask, int numeric) -{ - if(mask != 0xffffffffffffffffULL) - printf("0x%llx/0x%llx ", mark, mask); - else - printf("0x%llx ", mark); -} -#else static void print_mark(unsigned long mark, unsigned long mask, int numeric) { @@ -83,7 +65,6 @@ print_mark(unsigned long mark, unsigned long mask, int numeric) else printf("0x%lx ", mark); } -#endif /* Final check; must have specified --mark. */ static void -- cgit v1.2.3