summaryrefslogtreecommitdiffstats
path: root/server-fn.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-17 07:09:46 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-17 07:09:46 +0000
commitd3b5c242cc01a41820b696cf6f6420879ce24adc (patch)
tree38c9c796bd2cb9eed00695d436b9c44669200e0f /server-fn.c
parent216df07688c3811983d4e3430ad59689ebaab889 (diff)
Oops, it is always a good idea to get arguments the right way round.
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 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;