Re: [Qemu-devel] [PATCH] rewamp/simplify option parsing

2014-05-12 Thread Eric Blake
On 05/12/2014 01:55 AM, Michael Tokarev wrote: s/rewamp/revamp/ in the subject > Main change is to allow get_opt_name() to accept > a set of delimiters (string) instead of a single > delimiter (char). This way it is easier to search > for the next (sub)option in an option string, so > other code

[Qemu-devel] [PATCH] rewamp/simplify option parsing

2014-05-12 Thread Michael Tokarev
Main change is to allow get_opt_name() to accept a set of delimiters (string) instead of a single delimiter (char). This way it is easier to search for the next (sub)option in an option string, so other code using get_opt_name() can be simplified. Signed-off-by: Michael Tokarev --- This is an ol