From 6b60dc5be58a5781cacc4e6f238454d5e8421760 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Mon, 1 Feb 2016 19:24:38 +0100 Subject: extensions: rename xt_buf to xt_xlate Use a more generic name for this object to prepare the introduction of other translation specific fields. Signed-off-by: Pablo Neira Ayuso --- extensions/libip6t_hl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extensions/libip6t_hl.c') diff --git a/extensions/libip6t_hl.c b/extensions/libip6t_hl.c index 226b69c3..9fe893a3 100644 --- a/extensions/libip6t_hl.c +++ b/extensions/libip6t_hl.c @@ -84,7 +84,7 @@ static void hl_save(const void *ip, const struct xt_entry_match *match) } static int hl_xlate(const struct xt_entry_match *match, - struct xt_buf *buf, int numeric) + struct xt_xlate *xl, int numeric) { static const char *const op[] = { [IP6T_HL_EQ] = "", @@ -95,7 +95,7 @@ static int hl_xlate(const struct xt_entry_match *match, const struct ip6t_hl_info *info = (struct ip6t_hl_info *) match->data; - xt_buf_add(buf, "ip6 hoplimit %s%u ", op[info->mode], info->hop_limit); + xt_xlate_add(xl, "ip6 hoplimit %s%u ", op[info->mode], info->hop_limit); return 1; } -- cgit v1.2.3