=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/session.h,v retrieving revision 1.20.2.2 retrieving revision 1.21 diff -u -r1.20.2.2 -r1.21 --- src/usr.bin/ssh/session.h 2004/08/19 22:37:32 1.20.2.2 +++ src/usr.bin/ssh/session.h 2003/09/23 20:17:11 1.21 @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.20.2.2 2004/08/19 22:37:32 brad Exp $ */ +/* $OpenBSD: session.h,v 1.21 2003/09/23 20:17:11 markus Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -39,6 +39,9 @@ int ptyfd, ttyfd, ptymaster; u_int row, col, xpixel, ypixel; char tty[TTYSZ]; + /* last login */ + char hostname[MAXHOSTNAMELEN]; + time_t last_login_time; /* X11 */ u_int display_number; char *display; @@ -50,11 +53,6 @@ /* proto 2 */ int chanid; int is_subsystem; - int num_env; - struct { - char *name; - char *val; - } *env; }; void do_authenticated(Authctxt *);