=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/server-client.c,v retrieving revision 1.14 retrieving revision 1.15 diff -c -r1.14 -r1.15 *** src/usr.bin/tmux/server-client.c 2009/11/04 23:12:43 1.14 --- src/usr.bin/tmux/server-client.c 2009/11/04 23:29:42 1.15 *************** *** 1,4 **** ! /* $OpenBSD: server-client.c,v 1.14 2009/11/04 23:12:43 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: server-client.c,v 1.15 2009/11/04 23:29:42 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott *************** *** 120,127 **** --- 120,130 ---- if (c->title != NULL) xfree(c->title); + evtimer_del(&c->identify_timer); + if (c->message_string != NULL) xfree(c->message_string); + evtimer_del(&c->message_timer); if (c->prompt_string != NULL) xfree(c->prompt_string); *************** *** 447,458 **** if (gettimeofday(&tv, NULL) != 0) fatal("gettimeofday failed"); - - if (c->flags & CLIENT_IDENTIFY && timercmp(&tv, &c->identify_timer, >)) - server_clear_identify(c); - - if (c->message_string != NULL && timercmp(&tv, &c->message_timer, >)) - status_message_clear(c); if (c->message_string != NULL || c->prompt_string != NULL) { /* --- 450,455 ----