diff options
author | 2002-06-23 21:06:41 +0000 | |
---|---|---|
committer | 2002-06-23 21:06:41 +0000 | |
commit | 6c28c6bc4aec49f0c51324abcd687b6f7eb85d03 (patch) | |
tree | 087b6bc6b5457541d4c307d5921d1ace3dd70c0a /usr.bin/ssh/session.h | |
parent | KNF (diff) | |
download | wireguard-openbsd-6c28c6bc4aec49f0c51324abcd687b6f7eb85d03.tar.xz wireguard-openbsd-6c28c6bc4aec49f0c51324abcd687b6f7eb85d03.zip |
display, screen, row, col, xpixel, ypixel are u_int; markus ok
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r-- | usr.bin/ssh/session.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h index 2a7e4b224fd..3bce97891fd 100644 --- a/usr.bin/ssh/session.h +++ b/usr.bin/ssh/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; |