diff options
Diffstat (limited to 'src/vnet/ip/lookup.c')
-rw-r--r-- | src/vnet/ip/lookup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/ip/lookup.c b/src/vnet/ip/lookup.c index 26bdaa635aa..5ac2a9c17e2 100644 --- a/src/vnet/ip/lookup.c +++ b/src/vnet/ip/lookup.c @@ -145,13 +145,13 @@ unformat_ip_flow_hash_config (unformat_input_t *input, va_list *args) { if (unformat (input, "%_,")) ; -#define _(a, b) \ +#define _(a, b, c) \ else if (unformat (input, "%_" #a)) \ { \ - *flow_hash_config |= b; \ + *flow_hash_config |= c; \ matched_once = 1; \ } - foreach_flow_hash_bit_v1 + foreach_flow_hash_bit #undef _ else { |