commit a573a8f34c11c3361644172847c90b7fe3bcd712 Author: Jan Engelhardt <jengelh@xxxxxxxxxx> Date: Thu Nov 6 09:23:10 2008 +0100 libiptc: use hex output for hookmask Signed-off-by: Jan Engelhardt <jengelh@xxxxxxxxxx> --- libiptc/libiptc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libiptc/libiptc.c b/libiptc/libiptc.c index 98780a6..13e4c69 100644 --- a/libiptc/libiptc.c +++ b/libiptc/libiptc.c @@ -1417,13 +1417,13 @@ TC_DUMP_ENTRIES(struct xtc_handle *const handle) printf("libiptc v%s. %u bytes.\n", XTABLES_VERSION, handle->entries->size); printf("Table `%s'\n", handle->info.name); - printf("Hooks: pre/in/fwd/out/post = %u/%u/%u/%u/%u\n", + printf("Hooks: pre/in/fwd/out/post = %x/%x/%x/%x/%x\n", handle->info.hook_entry[HOOK_PRE_ROUTING], handle->info.hook_entry[HOOK_LOCAL_IN], handle->info.hook_entry[HOOK_FORWARD], handle->info.hook_entry[HOOK_LOCAL_OUT], handle->info.hook_entry[HOOK_POST_ROUTING]); - printf("Underflows: pre/in/fwd/out/post = %u/%u/%u/%u/%u\n", + printf("Underflows: pre/in/fwd/out/post = %x/%x/%x/%x/%x\n", handle->info.underflow[HOOK_PRE_ROUTING], handle->info.underflow[HOOK_LOCAL_IN], handle->info.underflow[HOOK_FORWARD], -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html