From d3b5c242cc01a41820b696cf6f6420879ce24adc Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 17 Jul 2009 07:09:46 +0000 Subject: [PATCH] Oops, it is always a good idea to get arguments the right way round. --- server-fn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server-fn.c b/server-fn.c index 4ecb9ce9..d6cec8f9 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, c, NULL, PROMPT_HIDDEN); + "Password: ", server_lock_callback, NULL, c, PROMPT_HIDDEN); server_redraw_client(c); } server_locked = 1;