odp-util: Fix a comment.
authorJoe Stringer <joestringer@nicira.com>
Mon, 12 May 2014 22:07:18 +0000 (10:07 +1200)
committerJoe Stringer <joestringer@nicira.com>
Wed, 14 May 2014 22:20:23 +0000 (10:20 +1200)
The comment was very specific to one user of the function, and had a
typo. This change reflects the wider effect of the case.

Signed-off-by: Joe Stringer <joestringer@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
lib/odp-util.c

index af464a0..34ac5cd 100644 (file)
@@ -3313,7 +3313,7 @@ odp_flow_key_to_flow__(const struct nlattr *key, size_t key_len,
         flow->recirc_id = nl_attr_get_u32(attrs[OVS_KEY_ATTR_RECIRC_ID]);
         expected_attrs |= UINT64_C(1) << OVS_KEY_ATTR_RECIRC_ID;
     } else if (is_mask) {
-        /* Always exact match recirc_id when datapath does not sepcify it. */
+        /* Always exact match recirc_id if it is not specified. */
         flow->recirc_id = UINT32_MAX;
     }