diff --git a/extensions/libxt_TEE.c b/extensions/libxt_TEE.c index 18638b8..f6d5583 100644 --- a/extensions/libxt_TEE.c +++ b/extensions/libxt_TEE.c @@ -83,9 +83,9 @@ static void tee_tg_print(const void *ip, const struct xt_entry_target *target, const struct xt_tee_tginfo *info = (const void *)target->data; if (numeric) - printf("TEE gw:%s ", ipaddr_to_anyname(&info->gw.in)); - else printf("TEE gw:%s ", ipaddr_to_numeric(&info->gw.in)); + else + printf("TEE gw:%s ", ipaddr_to_anyname(&info->gw.in)); } static void tee_tg_save(const void *ip, const struct xt_entry_target *target) @@ -98,6 +98,8 @@ static void tee_tg_save(const void *ip, const struct xt_entry_target *target) static struct xtables_target tee_tg_reg = { .name = "TEE", .version = XTABLES_VERSION, + .revision = 0, + .family = PF_INET, .size = XT_ALIGN(sizeof(struct xt_tee_tginfo)), .userspacesize = XT_ALIGN(sizeof(struct xt_tee_tginfo)), .help = tee_tg_help,