summaryrefslogtreecommitdiff
path: root/session.h
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-06-23 21:48:28 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-06-23 21:48:28 +0000
commita9d2c89fc5e9feb9da7326e2fdaf3281184620ab (patch)
tree5aa1c559cb3bcb4905a6b79a92f70935b3de57e4 /session.h
parent8ada5d0d0daabc238b86dab64066353937ff22e8 (diff)
- deraadt@cvs.openbsd.org 2002/06/23 21:06:41
[channels.c channels.h session.c session.h] display, screen, row, col, xpixel, ypixel are u_int; markus ok - (bal) Also fixed IPADDR_IN_DISPLAY case where display, screen, row, col, xpixel are u_int.
Diffstat (limited to 'session.h')
-rw-r--r--session.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/session.h b/session.h
index 2a7e4b22..3bce9789 100644
--- a/session.h
+++ b/session.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: session.h,v 1.17 2002/03/29 18:59:32 markus Exp $ */
+/* $OpenBSD: session.h,v 1.18 2002/06/23 21:06:41 deraadt Exp $ */
/*
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -37,15 +37,15 @@ struct Session {
/* tty */
char *term;
int ptyfd, ttyfd, ptymaster;
- int row, col, xpixel, ypixel;
+ u_int row, col, xpixel, ypixel;
char tty[TTYSZ];
/* last login */
char hostname[MAXHOSTNAMELEN];
time_t last_login_time;
/* X11 */
- int display_number;
+ u_int display_number;
char *display;
- int screen;
+ u_int screen;
char *auth_display;
char *auth_proto;
char *auth_data;