Skip to content

Commit ce77aa4

Browse files
peffgitster
authored andcommitted
credential: use git_prompt instead of git_getpass
We use git_getpass to retrieve the username and password from the terminal. However, git_getpass will not echo the username as the user types. We can fix this by using the more generic git_prompt, which underlies git_getpass but lets us specify an "echo" option. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a509025 commit ce77aa4

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

credential.c

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@ static void credential_describe(struct credential *c, struct strbuf *out)
109109
strbuf_addf(out, "/%s", c->path);
110110
}
111111

112-
static char *credential_ask_one(const char *what, struct credential *c)
112+
static char *credential_ask_one(const char *what, struct credential *c,
113+
int flags)
113114
{
114115
struct strbuf desc = STRBUF_INIT;
115116
struct strbuf prompt = STRBUF_INIT;
@@ -121,11 +122,7 @@ static char *credential_ask_one(const char *what, struct credential *c)
121122
else
122123
strbuf_addf(&prompt, "%s: ", what);
123124

124-
/* FIXME: for usernames, we should do something less magical that
125-
* actually echoes the characters. However, we need to read from
126-
* /dev/tty and not stdio, which is not portable (but getpass will do
127-
* it for us). http.c uses the same workaround. */
128-
r = git_getpass(prompt.buf);
125+
r = git_prompt(prompt.buf, flags);
129126

130127
strbuf_release(&desc);
131128
strbuf_release(&prompt);
@@ -135,9 +132,11 @@ static char *credential_ask_one(const char *what, struct credential *c)
135132
static void credential_getpass(struct credential *c)
136133
{
137134
if (!c->username)
138-
c->username = credential_ask_one("Username", c);
135+
c->username = credential_ask_one("Username", c,
136+
PROMPT_ASKPASS|PROMPT_ECHO);
139137
if (!c->password)
140-
c->password = credential_ask_one("Password", c);
138+
c->password = credential_ask_one("Password", c,
139+
PROMPT_ASKPASS);
141140
}
142141

143142
int credential_read(struct credential *c, FILE *fp)

0 commit comments

Comments
 (0)