summaryrefslogtreecommitdiff
path: root/src/timedate
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-07-11 19:14:16 +0200
committerYu Watanabe <watanabe.yu+github@gmail.com>2019-07-12 14:31:12 +0900
commitb910cc72c0fb56d96bf98704450fba1f339d8527 (patch)
treec36280c1d426b1ec859ecb55872314d6a9855f35 /src/timedate
parent6fa0524133ce54889f870d7ad17ab1d1832d7460 (diff)
downloadsystemd-b910cc72c0fb56d96bf98704450fba1f339d8527.tar.gz
systemd-b910cc72c0fb56d96bf98704450fba1f339d8527.tar.bz2
systemd-b910cc72c0fb56d96bf98704450fba1f339d8527.zip
tree-wide: get rid of strappend()
It's a special case of strjoin(), so no need to keep both. In particular as typing strjoin() is even shoert than strappend().
Diffstat (limited to 'src/timedate')
-rw-r--r--src/timedate/timedated.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timedate/timedated.c b/src/timedate/timedated.c
index fe91854ac8..57bbefc0c1 100644
--- a/src/timedate/timedated.c
+++ b/src/timedate/timedated.c
@@ -227,7 +227,7 @@ static int context_write_data_timezone(Context *c) {
return r;
}
- p = strappend("../usr/share/zoneinfo/", c->zone);
+ p = path_join("../usr/share/zoneinfo", c->zone);
if (!p)
return log_oom();