diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-09-01 09:11:05 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-09-01 09:11:05 +0000 |
commit | f8aa5821be6bb802785c5ca7c23c91465cfba4a3 (patch) | |
tree | 9466e8b8d672ba46270ec1db1d7af79d7d1fddb1 /tmux.c | |
parent | 34bb735a65674816c90212f58c71e3adb6bf2696 (diff) | |
download | rtmux-f8aa5821be6bb802785c5ca7c23c91465cfba4a3.tar.gz rtmux-f8aa5821be6bb802785c5ca7c23c91465cfba4a3.tar.bz2 rtmux-f8aa5821be6bb802785c5ca7c23c91465cfba4a3.zip |
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.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -214,7 +214,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) { |