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/libxt_length.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'extensions/libxt_length.c') diff --git a/extensions/libxt_length.c b/extensions/libxt_length.c index 96dab0cf..00acae0e 100644 --- a/extensions/libxt_length.c +++ b/extensions/libxt_length.c @@ -57,15 +57,15 @@ static void length_save(const void *ip, const struct xt_entry_match *match) } static int length_xlate(const struct xt_entry_match *match, - struct xt_buf *buf, int numeric) + struct xt_xlate *xl, int numeric) { const struct xt_length_info *info = (void *)match->data; - xt_buf_add(buf, "meta length %s", info->invert ? "!= " : ""); + xt_xlate_add(xl, "meta length %s", info->invert ? "!= " : ""); if (info->min == info->max) - xt_buf_add(buf, "%u ", info->min); + xt_xlate_add(xl, "%u ", info->min); else - xt_buf_add(buf, "%u-%u ", info->min, info->max); + xt_xlate_add(xl, "%u-%u ", info->min, info->max); return 1; } -- cgit v1.2.3