diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2006-12-31 05:29:11 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-31 07:22:13 +0100 |
commit | 45b097947d6297a4b3f1016b05c66cdc15b411c2 (patch) | |
tree | 3caac2bb11761799baea0607ada6de14a40bd0b2 /git.c | |
parent | Use PATH_MAX constant for --bare. (diff) | |
download | git-45b097947d6297a4b3f1016b05c66cdc15b411c2.tar.xz git-45b097947d6297a4b3f1016b05c66cdc15b411c2.zip |
Replace "GIT_DIR" with GIT_DIR_ENVIRONMENT.
We tend to use the nice constant GIT_DIR_ENVIRONMENT when we
are referring to the "GIT_DIR" constant, but git.c didn't do
so. Now it does.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to '')
-rw-r--r-- | git.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -63,14 +63,14 @@ static int handle_options(const char*** argv, int* argc) fprintf(stderr, "No directory given for --git-dir.\n" ); usage(git_usage_string); } - setenv("GIT_DIR", (*argv)[1], 1); + setenv(GIT_DIR_ENVIRONMENT, (*argv)[1], 1); (*argv)++; (*argc)--; } else if (!strncmp(cmd, "--git-dir=", 10)) { - setenv("GIT_DIR", cmd + 10, 1); + setenv(GIT_DIR_ENVIRONMENT, cmd + 10, 1); } else if (!strcmp(cmd, "--bare")) { static char git_dir[PATH_MAX+1]; - setenv("GIT_DIR", getcwd(git_dir, sizeof(git_dir)), 1); + setenv(GIT_DIR_ENVIRONMENT, getcwd(git_dir, sizeof(git_dir)), 1); } else { fprintf(stderr, "Unknown option: %s\n", cmd); usage(git_usage_string); |