From 5cc971facd30171a03267faf2ca9a875df824b0f Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Fri, 14 Aug 2009 21:17:54 +0000 Subject: Sync OpenBSD patchset 244: Drop the no_stop argument to tty_close and tty_free in favour of a flag in the tty struct. --- server-msg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server-msg.c') diff --git a/server-msg.c b/server-msg.c index 130d2083..a2b144c5 100644 --- a/server-msg.c +++ b/server-msg.c @@ -1,4 +1,4 @@ -/* $Id: server-msg.c,v 1.78 2009-08-14 21:04:04 tcunha Exp $ */ +/* $Id: server-msg.c,v 1.79 2009-08-14 21:17:54 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -90,7 +90,7 @@ server_msg_dispatch(struct client *c) fatalx("bad MSG_EXITING size"); c->session = NULL; - tty_close(&c->tty, c->flags & CLIENT_SUSPENDED); + tty_close(&c->tty); server_write_client(c, MSG_EXITED, NULL, 0); break; case MSG_UNLOCK: -- cgit