diff options
author | Linus Torvalds <torvalds@osdl.org> | 2006-07-28 22:44:25 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-29 01:34:07 -0700 |
commit | a633fca0c056aa221d23493c276d3713191621b3 (patch) | |
tree | 6dcb10b511201ad3e83f736e7eba214e301e5805 /builtin-diff-stages.c | |
parent | Call setup_git_directory() early (diff) | |
download | tgif-a633fca0c056aa221d23493c276d3713191621b3.tar.xz |
Call setup_git_directory() much earlier
This changes the calling convention of built-in commands and
passes the "prefix" (i.e. pathname of $PWD relative to the
project root level) down to them.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-diff-stages.c')
-rw-r--r-- | builtin-diff-stages.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/builtin-diff-stages.c b/builtin-diff-stages.c index 9c62702941..5960e08997 100644 --- a/builtin-diff-stages.c +++ b/builtin-diff-stages.c @@ -55,10 +55,9 @@ static void diff_stages(int stage1, int stage2, const char **pathspec) } } -int cmd_diff_stages(int ac, const char **av, char **envp) +int cmd_diff_stages(int ac, const char **av, const char *prefix) { int stage1, stage2; - const char *prefix = setup_git_directory(); const char **pathspec = NULL; git_config(git_default_config); /* no "diff" UI options */ |