Add a new option 'core.askpass'.
[gitweb.git] / connect.c
index 02e738a0146a5c46aaf3f1d8edc3c055a99e98b9..e296bfca1896b432376ea98cf92db46d7120a062 100644 (file)
--- a/connect.c
+++ b/connect.c
@@ -621,12 +621,14 @@ int finish_connect(struct child_process *conn)
 
 char *git_getpass(const char *prompt)
 {
-       char *askpass;
+       const char *askpass;
        struct child_process pass;
        const char *args[3];
        static struct strbuf buffer = STRBUF_INIT;
 
        askpass = getenv("GIT_ASKPASS");
+       if (!askpass)
+               askpass = askpass_program;
 
        if (!askpass || !(*askpass))
                return getpass(prompt);