From bcee881c3a8a9fae9606c9f4fd4f3e1afa97d9b4 Mon Sep 17 00:00:00 2001 From: robijn Date: Wed, 17 Jul 2002 22:07:41 +0000 Subject: [PATCH] Fixed bug on cursor on/off command. --- server/commands/screen_commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/commands/screen_commands.c b/server/commands/screen_commands.c index 4405212..9c416b0 100644 --- a/server/commands/screen_commands.c +++ b/server/commands/screen_commands.c @@ -336,7 +336,7 @@ screen_set_func (Client * c, int argc, char **argv) /* set the heartbeat type...*/ if (0 == strcmp (argv[i], "off")) - s->heartbeat = CURSOR_OFF; + s->cursor = CURSOR_OFF; if (0 == strcmp (argv[i], "on")) s->cursor = CURSOR_DEFAULT_ON; if (0 == strcmp (argv[i], "under"))