On Thu, Jul 12, 2018 at 12:09:26PM -0400, Qiaobin Fu wrote: > @@ -156,6 +162,9 @@ parse_skbedit(struct action_util *a, int *argc_p, char > ***argv_p, int tca_id, > if (flags & SKBEDIT_F_PTYPE) > addattr_l(n, MAX_MSG, TCA_SKBEDIT_PTYPE, > &ptype, sizeof(ptype)); > + if (pure_flags != 0) > + addattr_l(n, MAX_MSG, TCA_SKBEDIT_FLAGS, > + &pure_flags, sizeof(pure_flags));
It is missing 2 spaces ^--- here, to make the indentation right. (as in the block above) Marcelo