From: Joe Stringer Date: Mon, 12 May 2014 22:07:18 +0000 (+1200) Subject: odp-util: Fix a comment. X-Git-Tag: v2.3~99 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=8c1b077f62126633ac67b5babf0cfc6147f3a167 odp-util: Fix a comment. 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 Acked-by: Ben Pfaff --- diff --git a/lib/odp-util.c b/lib/odp-util.c index af464a040..34ac5cd09 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c @@ -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; }