From 79d4ffe2c977c9750b77f869be185b5bedd08c2d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 9 May 2012 12:21:54 -0700 Subject: [PATCH] odp-util: Fix parsing of actions encapsulated within "sample" actions. Signed-off-by: Ben Pfaff --- lib/odp-util.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/odp-util.c b/lib/odp-util.c index 88986a2ea..ce4563536 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c @@ -534,7 +534,7 @@ parse_odp_action(const char *s, const struct shash *port_names, for (;;) { int retval; - s += strspn(s, delimiters); + n += strspn(s + n, delimiters); if (s[n] == ')') { break; } @@ -544,7 +544,6 @@ parse_odp_action(const char *s, const struct shash *port_names, return retval; } n += retval; - } nl_msg_end_nested(actions, actions_ofs); nl_msg_end_nested(actions, sample_ofs); -- 2.43.0