diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-17 07:09:46 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-17 07:09:46 +0000 |
commit | d3b5c242cc01a41820b696cf6f6420879ce24adc (patch) | |
tree | 38c9c796bd2cb9eed00695d436b9c44669200e0f | |
parent | 216df07688c3811983d4e3430ad59689ebaab889 (diff) | |
download | rtmux-d3b5c242cc01a41820b696cf6f6420879ce24adc.tar.gz rtmux-d3b5c242cc01a41820b696cf6f6420879ce24adc.tar.bz2 rtmux-d3b5c242cc01a41820b696cf6f6420879ce24adc.zip |
Oops, it is always a good idea to get arguments the right way round.
-rw-r--r-- | server-fn.c | 2 |
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; |