diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-02-01 19:24:38 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-02-16 19:30:25 +0100 |
commit | 6b60dc5be58a5781cacc4e6f238454d5e8421760 (patch) | |
tree | be23e91f26e5295c12cd69ee5091454345cfaa6b /extensions/libip6t_LOG.c | |
parent | ca9a1a6a9f64ee5d94038abb451b27cc9581c81b (diff) |
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 <pablo@netfilter.org>
Diffstat (limited to 'extensions/libip6t_LOG.c')
-rw-r--r-- | extensions/libip6t_LOG.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/libip6t_LOG.c b/extensions/libip6t_LOG.c index 9df86fdb..17d76a8d 100644 --- a/extensions/libip6t_LOG.c +++ b/extensions/libip6t_LOG.c @@ -183,19 +183,19 @@ static const struct ip6t_log_xlate ip6t_log_xlate_names[] = { }; static int LOG_xlate(const struct xt_entry_target *target, - struct xt_buf *buf, int numeric) + struct xt_xlate *xl, int numeric) { unsigned int i = 0; const struct ip6t_log_info *loginfo = (const struct ip6t_log_info *)target->data; - xt_buf_add(buf, "log "); + xt_xlate_add(xl, "log "); if (strcmp(loginfo->prefix, "") != 0) - xt_buf_add(buf, "prefix \\\"%s\\\" ", loginfo->prefix); + xt_xlate_add(xl, "prefix \\\"%s\\\" ", loginfo->prefix); for (i = 0; i < ARRAY_SIZE(ip6t_log_xlate_names); ++i) if (loginfo->level == ip6t_log_xlate_names[i].level) { - xt_buf_add(buf, "level %s", + xt_xlate_add(xl, "level %s", ip6t_log_xlate_names[i].name); break; } |