aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-09-01 09:11:05 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-09-01 09:11:05 +0000
commitf8aa5821be6bb802785c5ca7c23c91465cfba4a3 (patch)
tree9466e8b8d672ba46270ec1db1d7af79d7d1fddb1 /tmux.c
parent34bb735a65674816c90212f58c71e3adb6bf2696 (diff)
downloadrtmux-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 103a6bc6..7053201c 100644
--- a/tmux.c
+++ b/tmux.c
@@ -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) {