summaryrefslogtreecommitdiffstats
path: root/key-bindings.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-02-13 18:57:55 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-02-13 18:57:55 +0000
commit0450b4a5d436c1408b399150a89cbb2e7982f23f (patch)
tree0d9b50225b2b652fb9defcbb3209d17245a5f246 /key-bindings.c
parentfdafe630049861c7d6f293bc34064182d8f326f8 (diff)
Move status prompt/message init and teardown into status.c.
Diffstat (limited to 'key-bindings.c')
-rw-r--r--key-bindings.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/key-bindings.c b/key-bindings.c
index e9396b46..4d2295a4 100644
--- a/key-bindings.c
+++ b/key-bindings.c
@@ -1,4 +1,4 @@
-/* $Id: key-bindings.c,v 1.59 2009-01-30 21:10:10 nicm Exp $ */
+/* $Id: key-bindings.c,v 1.60 2009-02-13 18:57:55 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -168,7 +168,7 @@ key_bindings_error(struct cmd_ctx *ctx, const char *fmt, ...)
va_end(ap);
*msg = toupper((u_char) *msg);
- server_set_client_message(ctx->curclient, msg);
+ status_message_set(ctx->curclient, msg);
xfree(msg);
}
@@ -199,7 +199,7 @@ key_bindings_info(struct cmd_ctx *ctx, const char *fmt, ...)
va_end(ap);
*msg = toupper((u_char) *msg);
- server_set_client_message(ctx->curclient, msg);
+ status_message_set(ctx->curclient, msg);
xfree(msg);
}