summaryrefslogtreecommitdiffstats
path: root/server-msg.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-21 20:04:37 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-21 20:04:37 +0000
commitce90f1bddb5bf3916e8f3be25277716732b15438 (patch)
tree56f9ba464c0b90d356cf2ca1b6db862e8706fe38 /server-msg.c
parentd0984b890b84c2fac9cdcfbc44121c1171e06531 (diff)
The CLIENT_HOLD hack can go bye-bye.
Diffstat (limited to 'server-msg.c')
-rw-r--r--server-msg.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/server-msg.c b/server-msg.c
index d75f23ba..35eafe01 100644
--- a/server-msg.c
+++ b/server-msg.c
@@ -1,4 +1,4 @@
-/* $Id: server-msg.c,v 1.34 2007-11-21 13:11:41 nicm Exp $ */
+/* $Id: server-msg.c,v 1.35 2007-11-21 20:04:37 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -243,11 +243,6 @@ server_msg_fn_keys(struct hdr *hdr, struct client *c)
if (hdr->size & 0x1)
fatalx("bad MSG_KEYS size");
- if (c->flags & CLIENT_HOLD) {
- server_redraw_client(c);
- c->flags &= ~CLIENT_HOLD;
- }
-
size = hdr->size;
while (size != 0) {
key = (int16_t) input_extract16(c->in);