diff options
author | Frank Li <lznuaa@gmail.com> | 2010-03-02 12:52:11 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-03-02 21:15:41 +0100 |
commit | 82cd8358e8203fa02da18e8ee71449cb45c4157d (patch) | |
tree | d86e4daddec0cf6af2a69238c7e139416dfa3838 /git.c | |
parent | Merge branch 'cc/maint-bisect-paths' (diff) | |
download | git-82cd8358e8203fa02da18e8ee71449cb45c4157d.tar.xz git-82cd8358e8203fa02da18e8ee71449cb45c4157d.zip |
fallback SSH_ASKPASS when GIT_ASKPASS not set
If GIT_ASKPASS is not set and SSH_ASKPASS set, GIT_ASKPASS will
use SSH_ASKPASS.
Signed-off-by: Frank Li <lznuaa@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | git.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -54,6 +54,9 @@ static int handle_options(const char ***argv, int *argc, int *envchanged) { int handled = 0; + if (!getenv("GIT_ASKPASS") && getenv("SSH_ASKPASS")) + setenv("GIT_ASKPASS", getenv("SSH_ASKPASS"), 1); + while (*argc > 0) { const char *cmd = (*argv)[0]; if (cmd[0] != '-') |