diff options
-rw-r--r-- | libbb/concat_path_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/concat_path_file.c b/libbb/concat_path_file.c index 77c054530..00233ad9a 100644 --- a/libbb/concat_path_file.c +++ b/libbb/concat_path_file.c | |||
@@ -34,11 +34,11 @@ extern char *concat_path_file(const char *path, const char *filename) | |||
34 | char *lc; | 34 | char *lc; |
35 | 35 | ||
36 | if (!path) | 36 | if (!path) |
37 | path=""; | 37 | path = ""; |
38 | lc = last_char_is(path, '/'); | 38 | lc = last_char_is(path, '/'); |
39 | while (*filename == '/') | 39 | while (*filename == '/') |
40 | filename++; | 40 | filename++; |
41 | bb_xasprintf(&outbuf, "%s%s%s", path, (lc==NULL)? "/" : "", filename); | 41 | bb_xasprintf(&outbuf, "%s%s%s", path, (lc==NULL ? "/" : ""), filename); |
42 | 42 | ||
43 | return outbuf; | 43 | return outbuf; |
44 | } | 44 | } |