mirror of
https://github.com/openvswitch/ovs
synced 2025-08-31 06:15:47 +00:00
ovs-vsctl: Prepare for more flexible database argument parsing.
The wait-until command to be added in an upcoming commit needs to support !=, <, >, <=, and >= operators in addition to =, so this commit adds that infrastructure.
This commit is contained in:
@@ -1633,5 +1633,5 @@ error:
|
||||
bool
|
||||
ovsdb_token_is_delim(unsigned char c)
|
||||
{
|
||||
return strchr(":=, []{}", c) != NULL;
|
||||
return strchr(":=, []{}!<>", c) != NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user