The error message states that "not_first" is a valid selection for the ip_frag field, but looking at the structure that is defined this should say "not_later".
Signed-off-by: Louis Peens <[email protected]> Reviewed-by: Pieter Jansen van Vuuren <[email protected]> Reviewed-by: Simon Horman <[email protected]> --- lib/meta-flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/meta-flow.c b/lib/meta-flow.c index 8b8d174..db0abb3 100644 --- a/lib/meta-flow.c +++ b/lib/meta-flow.c @@ -2821,7 +2821,7 @@ mf_from_frag_string(const char *s, uint8_t *valuep, uint8_t *maskp) } return xasprintf("%s: unknown fragment type (valid types are \"no\", " - "\"yes\", \"first\", \"later\", \"not_first\"", s); + "\"yes\", \"first\", \"later\", \"not_later\"", s); } static char * -- 2.7.4 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
