summaryrefslogtreecommitdiffstats
path: root/server-fn.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 /server-fn.c
parent34bb735a65674816c90212f58c71e3adb6bf2696 (diff)
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 'server-fn.c')
-rw-r--r--server-fn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server-fn.c b/server-fn.c
index 37bf98a4..568751df 100644
--- a/server-fn.c
+++ b/server-fn.c
@@ -172,7 +172,7 @@ server_lock(void)
status_prompt_clear(c);
status_prompt_set(c,
- "Password: ", server_lock_callback, NULL, c, PROMPT_HIDDEN);
+ "Password:", server_lock_callback, NULL, c, PROMPT_HIDDEN);
server_redraw_client(c);
}
server_locked = 1;