X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=trace.c;h=35d388dce44a4a8e3d6053dfd6abcb652771818a;hb=3b0d24053b50d8da76de28ea5f0d3947fa3d2194;hp=02279b82c48eeb9b6e084b10dc2646eec5efbc01;hpb=d3cae60efcf28e3d498423b9d11dd772d424ddc9;p=git.git diff --git a/trace.c b/trace.c index 02279b82c..35d388dce 100644 --- a/trace.c +++ b/trace.c @@ -154,6 +154,7 @@ static const char *quote_crnl(const char *path) /* FIXME: move prefix to startup_info struct and get rid of this arg */ void trace_repo_setup(const char *prefix) { + const char *git_work_tree; char cwd[PATH_MAX]; char *trace = getenv("GIT_TRACE"); @@ -164,8 +165,14 @@ void trace_repo_setup(const char *prefix) if (!getcwd(cwd, PATH_MAX)) die("Unable to get current working directory"); + if (!(git_work_tree = get_git_work_tree())) + git_work_tree = "(null)"; + + if (!prefix) + prefix = "(null)"; + trace_printf("setup: git_dir: %s\n", quote_crnl(get_git_dir())); - trace_printf("setup: worktree: %s\n", quote_crnl(get_git_work_tree())); + trace_printf("setup: worktree: %s\n", quote_crnl(git_work_tree)); trace_printf("setup: cwd: %s\n", quote_crnl(cwd)); trace_printf("setup: prefix: %s\n", quote_crnl(prefix)); }