X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Fpath-util.c;h=dcc8321f505ee685727ae8b3a7f3565eb6795b2d;hb=bc854dc7cd051e1e5a6ebcca8084b07168051c6c;hp=b3fe0b81791f618949b4cbac1b183f3ba3e0b858;hpb=db594aef549b1376ea80030bd0966ed872eac01e;p=elogind.git diff --git a/src/shared/path-util.c b/src/shared/path-util.c index b3fe0b817..dcc8321f5 100644 --- a/src/shared/path-util.c +++ b/src/shared/path-util.c @@ -439,14 +439,14 @@ char* path_join(const char *root, const char *path, const char *rest) { assert(path); if (!isempty(root)) - return strjoin(root, "/", + return strjoin(root, endswith(root, "/") ? "" : "/", path[0] == '/' ? path+1 : path, - rest ? "/" : NULL, + rest ? (endswith(path, "/") ? "" : "/") : NULL, rest && rest[0] == '/' ? rest+1 : rest, NULL); else return strjoin(path, - rest ? "/" : NULL, + rest ? (endswith(path, "/") ? "" : "/") : NULL, rest && rest[0] == '/' ? rest+1 : rest, NULL); }