2
0
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:
Ben Pfaff
2010-06-28 17:20:15 -07:00
parent 87b23a01ed
commit e89e5374be
3 changed files with 96 additions and 11 deletions

View File

@@ -1633,5 +1633,5 @@ error:
bool
ovsdb_token_is_delim(unsigned char c)
{
return strchr(":=, []{}", c) != NULL;
return strchr(":=, []{}!<>", c) != NULL;
}