diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-02-03 22:37:58 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-02-03 22:49:01 -0800 |
commit | 7a5375395f8104a8679f9482e0c5faf60e7e9e54 (patch) | |
tree | dfe41332f58be30ec51745797c8521f8f1dd0c2e /builtin-init-db.c | |
parent | d0b8c9e561ea427104611bf392598a398c18d7cb (diff) | |
download | git-7a5375395f8104a8679f9482e0c5faf60e7e9e54.tar.gz |
fix misuse of prefix_path()
When DEFAULT_GIT_TEMPLATE_DIR is specified as a relative path,
init-db made it relative to exec_path using prefix_path(), which
is wrong. prefix_path() is about a file inside the work tree.
There was a similar misuse in config.c that takes relative
ETC_GITCONFIG path.
A convenience function prefix_filename() can concatenate two paths
to form a path that points at somewhere outside the work tree.
Use it in these codepaths instead.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-init-db.c')
-rw-r--r-- | builtin-init-db.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin-init-db.c b/builtin-init-db.c index e1393b8d1e..e51d447761 100644 --- a/builtin-init-db.c +++ b/builtin-init-db.c @@ -142,8 +142,7 @@ static void copy_templates(const char *git_dir, int len, const char *template_di template_dir = DEFAULT_GIT_TEMPLATE_DIR; if (!is_absolute_path(template_dir)) { const char *exec_path = git_exec_path(); - template_dir = prefix_path(exec_path, strlen(exec_path), - template_dir); + template_dir = prefix_filename(exec_path, strlen(exec_path), template_dir); } } strcpy(template_path, template_dir); |