mirror of
https://github.com/openvswitch/ovs
synced 2025-08-30 22:05:19 +00:00
lib: fix typo in fragment handling error message
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 <louis.peens@netronome.com> Reviewed-by: Pieter Jansen van Vuuren <pieter.jansenvanvuuren@netronome.com> Acked-by: Ben Pfaff <blp@ovn.org> Signed-off-by: Simon Horman <simon.horman@netronome.com>
This commit is contained in:
committed by
Simon Horman
parent
f9558fb66a
commit
cc266ef0c9
@@ -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 *
|
||||
|
Reference in New Issue
Block a user