From b910cc72c0fb56d96bf98704450fba1f339d8527 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 11 Jul 2019 19:14:16 +0200 Subject: 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(). --- src/timedate/timedated.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/timedate') 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(); -- cgit v1.2.3