Use parse_rtattr_nested

(Logical change 1.129)
This commit is contained in:
2!tgraf 2005-01-18 22:11:58 +00:00
parent 7d69fd97ec
commit 7893400077
2 changed files with 3 additions and 4 deletions

View File

@ -596,8 +596,8 @@ print_ipt(struct action_util *au,FILE * f, struct rtattr *arg)
if (NULL == opts)
return -1;
memset(tb, 0, sizeof (tb));
parse_rtattr(tb, TCA_IPT_MAX, RTA_DATA(arg), RTA_PAYLOAD(arg));
parse_rtattr_nested(tb, TCA_IPT_MAX, arg);
if (tb[TCA_IPT_TABLE] == NULL) {
fprintf(f, "[NULL ipt table name ] assuming mangle ");

View File

@ -554,8 +554,7 @@ print_pedit(struct action_util *au,FILE * f, struct rtattr *arg)
if (arg == NULL)
return -1;
memset(tb, 0, sizeof (tb));
parse_rtattr(tb, TCA_PEDIT_MAX, RTA_DATA(arg), RTA_PAYLOAD(arg));
parse_rtattr_nested(tb, TCA_PEDIT_MAX, arg);
if (tb[TCA_PEDIT_PARMS] == NULL) {
fprintf(f, "[NULL pedit parameters]");