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/libipt_ttl.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'extensions/libipt_ttl.c') diff --git a/extensions/libipt_ttl.c b/extensions/libipt_ttl.c index c952502d..bd19cd2c 100644 --- a/extensions/libipt_ttl.c +++ b/extensions/libipt_ttl.c @@ -101,30 +101,30 @@ static void ttl_save(const void *ip, const struct xt_entry_match *match) } static int ttl_xlate(const struct xt_entry_match *match, - struct xt_buf *buf, int numeric) + struct xt_xlate *xl, int numeric) { const struct ipt_ttl_info *info = (struct ipt_ttl_info *) match->data; switch (info->mode) { case IPT_TTL_EQ: - xt_buf_add(buf, "ip ttl"); + xt_xlate_add(xl, "ip ttl"); break; case IPT_TTL_NE: - xt_buf_add(buf, "ip ttl !="); + xt_xlate_add(xl, "ip ttl !="); break; case IPT_TTL_LT: - xt_buf_add(buf, "ip ttl lt"); + xt_xlate_add(xl, "ip ttl lt"); break; case IPT_TTL_GT: - xt_buf_add(buf, "ip ttl gt"); + xt_xlate_add(xl, "ip ttl gt"); break; default: /* Should not happen. */ break; } - xt_buf_add(buf, " %u ", info->ttl); + xt_xlate_add(xl, " %u ", info->ttl); return 1; } -- cgit v1.2.3