author | Johannes Sixt <johannes.sixt@telecom.at> | |
Tue, 5 Feb 2008 08:17:33 +0000 (09:17 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 5 Feb 2008 09:44:10 +0000 (01:44 -0800) | ||
commit | ef5b9d6e2286630bf8afb5bdf1c6e3356f3d50c7 | |
tree | 98469bc91f8f147db82a9df883d37579a0c3c647 | tree | snapshot |
parent | 7a2078b4b00fb1c5d7b0bf8155778f79377b8f2f | commit | diff |
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. Noticed by Junio C Hamano.
We concatenate the paths manually. (prefix_filename() won't do
because it expects a prefix with a trailing '/'.)
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
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. Noticed by Junio C Hamano.
We concatenate the paths manually. (prefix_filename() won't do
because it expects a prefix with a trailing '/'.)
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-init-db.c | diff | blob | history | |
config.c | diff | blob | history |