mirror of
https://github.com/Dasharo/zephyr.git
synced 2026-03-06 14:57:20 -08:00
Splitting a string like 'foo="bar=baz"' on '=' will give ['foo', '"bar', 'baz"'] instead of the intended ['foo', '"bar=baz"']. split() with maxsplit=1 to avoid potential issues. Not seen in practice. Just some future safety. Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>