Skip to content

Commit 9f3f612

Browse files
committed
Merge pull request #677 from yaras/fix-git-675
Fixed masking username with asterisks when reading credentials
2 parents cf0165c + 636ad60 commit 9f3f612

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

credential.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ static void credential_getpass(struct credential *c)
132132
{
133133
if (!c->username)
134134
c->username = credential_ask_one("Username", c,
135-
PROMPT_ASKPASS|PROMPT_ECHO);
135+
PROMPT_ECHO);
136136
if (!c->password)
137137
c->password = credential_ask_one("Password", c,
138138
PROMPT_ASKPASS);

0 commit comments

Comments
 (0)