diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-17 07:09:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-07-17 07:09:47 +0000 |
commit | 2299013ddd9e6ce7302b396f8b7a78d2e6af5cb7 (patch) | |
tree | 21170c1138740d83f12e1f0ed74ffb9cb36d3452 /usr.bin | |
parent | c5fbd259c753cebcffc65bfb1587452c75e3d2dc (diff) |
Oops, it is always a good idea to get arguments the right way round.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/server-fn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server-fn.c b/usr.bin/tmux/server-fn.c index 37473e78c83..8d42ca75cb5 100644 --- a/usr.bin/tmux/server-fn.c +++ b/usr.bin/tmux/server-fn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-fn.c,v 1.6 2009/07/17 06:13:27 nicm Exp $ */ +/* $OpenBSD: server-fn.c,v 1.7 2009/07/17 07:09:46 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; |