odp-util: Fix parsing of actions encapsulated within "sample" actions.
authorBen Pfaff <blp@nicira.com>
Wed, 9 May 2012 19:21:54 +0000 (12:21 -0700)
committerBen Pfaff <blp@nicira.com>
Thu, 10 May 2012 18:44:04 +0000 (11:44 -0700)
Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/odp-util.c

index 88986a2..ce45635 100644 (file)
@@ -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);