Sync OpenBSD patchset 304:

Use "Password:" with no space for password prompts and don't display a *s for
the password, like pretty much everything else. From martynas@ with minor
tweaks by me.
This commit is contained in:
Tiago Cunha
2009-09-02 00:55:49 +00:00
parent 99de03ea32
commit ce5c441f0f
3 changed files with 15 additions and 21 deletions

4
tmux.c
View File

@ -1,4 +1,4 @@
/* $Id: tmux.c,v 1.166 2009-09-02 00:54:00 tcunha Exp $ */
/* $Id: tmux.c,v 1.167 2009-09-02 00:55:49 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -223,7 +223,7 @@ prepare_unlock(enum msgtype *msg, void **buf, size_t *len, int argc)
return (-1);
}
if ((pass = getpass("Password: ")) == NULL)
if ((pass = getpass("Password:")) == NULL)
return (-1);
if (strlen(pass) >= sizeof unlockdata.pass) {