diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2019-06-05 19:28:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-05 19:28:45 +0200 |
| commit | ff85c0a70dc0743e5b07b2d6a2d38e72ae157d97 (patch) | |
| tree | b0d4f1c49f7f760674f018fdf48d87ee2d1c02d1 /src/4D_api.cpp | |
| parent | 97fe47939d290c8b8514dc4960d7f6f80e3f813c (diff) | |
| parent | c4e3e60fdc222ebb789d9887c75a49a5713f4dd8 (diff) | |
| download | PROJ-ff85c0a70dc0743e5b07b2d6a2d38e72ae157d97.tar.gz PROJ-ff85c0a70dc0743e5b07b2d6a2d38e72ae157d97.zip | |
[Backport 6.1] Fix incorrect delimator ";" used to separate proj_info().searchpath entries (#1500)
[Backport 6.1] Fix incorrect delimator ";" used to separate proj_info().searchpath entries
Diffstat (limited to 'src/4D_api.cpp')
| -rw-r--r-- | src/4D_api.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/4D_api.cpp b/src/4D_api.cpp index 5d84e6c6..9f445d88 100644 --- a/src/4D_api.cpp +++ b/src/4D_api.cpp @@ -1367,9 +1367,9 @@ static char *path_append (char *buf, const char *app, size_t *buf_size) { } assert(buf); - /* Only append a semicolon if something's already there */ + /* Only append a delimiter if something's already there */ if (0 != buflen) - strcat (buf, ";"); + strcat (buf, delim); strcat (buf, app); return buf; } |
