From: Numan Siddique <[email protected]> This partially revers the commit - 298701dbc99645700be41680a43d049cb061847a as the commit [1] disables the conjunction.
We still need the changes to the tests/ovn.at file. CC: Han Zhou <[email protected]> Signed-off-by: Numan Siddique <[email protected]> --- lib/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/expr.c b/lib/expr.c index 64ea0aafa..9b9b6bcca 100644 --- a/lib/expr.c +++ b/lib/expr.c @@ -1517,7 +1517,7 @@ expr_symtab_add_string(struct shash *symtab, const char *name, const struct mf_field *field = mf_from_id(id); struct expr_symbol *symbol; - symbol = add_symbol(symtab, name, 0, prereqs, EXPR_L_NOMINAL, true, + symbol = add_symbol(symtab, name, 0, prereqs, EXPR_L_NOMINAL, false, field->writable); symbol->field = field; return symbol; -- 2.21.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
