diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 1999-12-12 19:20:04 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 1999-12-12 19:20:04 +0000 |
commit | da56fdc575a2442722d0ed3f765f846ec4a49666 (patch) | |
tree | 3ecd32b8e49cd16505b4a579fbd19962d9d817d1 /usr.bin/ssh/ssh.h | |
parent | 85361d56aa5b204fae0c32ff8b1828517ebdffe7 (diff) |
type conflict for 'extern Type *options' in channels.c; dot@dotat.at
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 241f0b930ff..d63369e8125 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -13,7 +13,7 @@ * */ -/* RCSID("$Id: ssh.h,v 1.30 1999/12/06 20:15:29 deraadt Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.31 1999/12/12 19:20:03 markus Exp $"); */ #ifndef SSH_H #define SSH_H @@ -568,7 +568,7 @@ char *channel_open_message(void); */ void channel_request_local_forwarding(u_short port, const char *host, - u_short remote_port); + u_short remote_port, int gateway_ports); /* * Initiate forwarding of connections to port "port" on remote host through @@ -612,7 +612,7 @@ char *x11_create_display(int screen); * Returns a suitable value for the DISPLAY variable, or NULL if an error * occurs. */ -char *x11_create_display_inet(int screen); +char *x11_create_display_inet(int screen, int x11_display_offset); /* * This is called when SSH_SMSG_X11_OPEN is received. The packet contains |