summaryrefslogtreecommitdiff
path: root/sshpty.h
diff options
context:
space:
mode:
authordjm <djm>2006-03-25 13:06:14 +0000
committerdjm <djm>2006-03-25 13:06:14 +0000
commit8d6235bbd995c293b54355d4ee44801afb6700fd (patch)
treea9c3fbff4da0294b09c27d1ed8293e8d89ea2fb6 /sshpty.h
parentc36bc7c056235683702d0d6279944803a2d89ccc (diff)
downloadopenssh-8d6235bbd995c293b54355d4ee44801afb6700fd.tar.gz
- deraadt@cvs.openbsd.org 2006/03/20 18:14:02
[monitor_wrap.h sshpty.h] sprinkle u_int throughout pty subsystem, ok markus
Diffstat (limited to 'sshpty.h')
-rw-r--r--sshpty.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshpty.h b/sshpty.h
index a7de7370..9a39e4a1 100644
--- a/sshpty.h
+++ b/sshpty.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.h,v 1.6 2006/02/07 01:42:00 stevesk Exp $ */
+/* $OpenBSD: sshpty.h,v 1.7 2006/03/20 18:14:02 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -23,10 +23,10 @@ struct termios get_saved_tio(void);
void leave_raw_mode(void);
void enter_raw_mode(void);
-int pty_allocate(int *, int *, char *, int);
+int pty_allocate(int *, int *, char *, size_t);
void pty_release(const char *);
void pty_make_controlling_tty(int *, const char *);
-void pty_change_window_size(int, int, int, int, int);
+void pty_change_window_size(int, u_int, u_int, u_int, u_int);
void pty_setowner(struct passwd *, const char *);
#endif /* SSHPTY_H */