Files
systemd/src/basic
Zbigniew Jędrzejewski-Szmek afe773b01a basic/strv: fix strv_join for first empty argument
Empty strings were ignored in strv_join, but only if they were at the beginning
of the string. Empty strings after at least one non-empty item were treated
normally.

Previously:
{"x"} → "x"
{"x", ""} → "x"
{"x", "", ""} → "x::"
{""} → ""
{"", ""} → ""
{"", "", ""} → ""
{"", "x"} → "x"
{"", "x", ""} → "x:"
Now:
{"x"} → "x"
{"x", ""} → "x"
{"x", "", ""} → "x::"
{""} → ""
{"", ""} → ":"
{"", "", ""} → "::"
{"", "x"} → ":x"
{"", "x", ""} → ""
2016-02-13 11:54:39 -05:00
..
2015-12-07 18:34:05 +01:00
2015-12-07 18:34:05 +01:00
2015-11-30 21:51:03 +01:00
2015-11-18 23:09:02 +01:00
2015-11-18 23:09:02 +01:00
2015-11-30 21:51:03 +01:00
2015-12-01 23:40:17 +01:00