Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 102befab authored by Jan Engelhardt's avatar Jan Engelhardt Committed by Patrick McHardy
Browse files

netfilter: x_tables: output bad hook mask in hexadecimal



It is a mask, and masks are most useful in hex.

Signed-off-by: default avatarJan Engelhardt <jengelh@medozas.de>
Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
parent 043ef46c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -342,7 +342,7 @@ int xt_check_match(const struct xt_match *match, unsigned short family,
		return -EINVAL;
	}
	if (match->hooks && (hook_mask & ~match->hooks) != 0) {
		printk("%s_tables: %s match: bad hook_mask %u/%u\n",
		printk("%s_tables: %s match: bad hook_mask %#x/%#x\n",
		       xt_prefix[family], match->name, hook_mask, match->hooks);
		return -EINVAL;
	}
@@ -483,7 +483,7 @@ int xt_check_target(const struct xt_target *target, unsigned short family,
		return -EINVAL;
	}
	if (target->hooks && (hook_mask & ~target->hooks) != 0) {
		printk("%s_tables: %s target: bad hook_mask %u/%u\n",
		printk("%s_tables: %s target: bad hook_mask %#x/%#x\n",
		       xt_prefix[family], target->name, hook_mask,
		       target->hooks);
		return -EINVAL;