diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-17 09:28:27 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-17 09:28:27 +0000 |
commit | fc17ce015076668f033beebf84e6bce96397adcb (patch) | |
tree | 9f7df67cd6ebeaf872f2845577aefe3d8e51361f | |
parent | 441c118b6338a129b4690089e41948baceefb452 (diff) | |
download | rtmux-fc17ce015076668f033beebf84e6bce96397adcb.tar.gz rtmux-fc17ce015076668f033beebf84e6bce96397adcb.tar.bz2 rtmux-fc17ce015076668f033beebf84e6bce96397adcb.zip |
Oops, it is always a good idea to get arguments the right way round.
-rw-r--r-- | server-fn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server-fn.c b/server-fn.c index 5957f596..db43a8cc 100644 --- a/server-fn.c +++ b/server-fn.c @@ -1,4 +1,4 @@ -/* $Id: server-fn.c,v 1.72 2009-07-17 09:26:21 nicm Exp $ */ +/* $Id: server-fn.c,v 1.73 2009-07-17 09:28:27 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; |