mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08:00
12 lines
157 B
Plaintext
12 lines
157 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)
|