Sync OpenBSD patchset 802:

Use pointer rather than index for the client's last session.
This commit is contained in:
Tiago Cunha
2010-12-22 15:31:00 +00:00
parent 64d16cf2d6
commit bb728b89a7
5 changed files with 19 additions and 21 deletions

View File

@ -1,4 +1,4 @@
/* $Id: server-client.c,v 1.47 2010-12-11 18:42:20 nicm Exp $ */
/* $Id: server-client.c,v 1.48 2010-12-22 15:31:00 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@ -77,7 +77,7 @@ server_client_create(int fd)
c->title = NULL;
c->session = NULL;
c->last_session = UINT_MAX;
c->last_session = NULL;
c->tty.sx = 80;
c->tty.sy = 24;