From ce5c441f0fddc70c9ac982eb4741d3d0230d51a2 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Wed, 2 Sep 2009 00:55:49 +0000 Subject: 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. --- server-fn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server-fn.c') diff --git a/server-fn.c b/server-fn.c index 74c18a4e..3d599a75 100644 --- a/server-fn.c +++ b/server-fn.c @@ -1,4 +1,4 @@ -/* $Id: server-fn.c,v 1.82 2009-08-31 22:30:15 tcunha Exp $ */ +/* $Id: server-fn.c,v 1.83 2009-09-02 00:55:49 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -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; -- cgit