mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
17 lines
212 B
Plaintext
17 lines
212 B
Plaintext
@@
|
|
expression s;
|
|
@@
|
|
- if (empty_or_root(s))
|
|
- s = "/";
|
|
+ s = empty_to_root(s);
|
|
@@
|
|
expression s;
|
|
@@
|
|
- (empty_or_root(s) ? "/" : s)
|
|
+ empty_to_root(s)
|
|
@@
|
|
expression s;
|
|
@@
|
|
- (s ? s : "/")
|
|
+ empty_to_root(s)
|