summaryrefslogtreecommitdiff
path: root/channels.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-03-17 23:40:15 +1100
committerDamien Miller <djm@mindrot.org>2000-03-17 23:40:15 +1100
commit7684ee17ee96426970c00cb44d9d00b6611b9a57 (patch)
treecb447b6e9d3fdc10b3e66a90b198092d7245447a /channels.c
parentd6121d2972c1a6924f6d186ea04eefe9dab774ef (diff)
- OpenBSD CVS updates:
- [atomicio.c auth-krb4.c bufaux.c channels.c compress.c fingerprint.c] [packet.h radix.c rsa.c scp.c ssh-agent.c ssh-keygen.c sshconnect.c] [sshd.c] pedantic: signed vs. unsigned, void*-arithm, etc - [ssh.1 sshd.8] Various cleanups and standardizations.
Diffstat (limited to 'channels.c')
-rw-r--r--channels.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels.c b/channels.c
index 090cbf095..e60ecc614 100644
--- a/channels.c
+++ b/channels.c
@@ -16,7 +16,7 @@
16 */ 16 */
17 17
18#include "includes.h" 18#include "includes.h"
19RCSID("$Id: channels.c,v 1.18 2000/03/11 09:45:41 damien Exp $"); 19RCSID("$Id: channels.c,v 1.19 2000/03/17 12:40:15 damien Exp $");
20 20
21#include "ssh.h" 21#include "ssh.h"
22#include "packet.h" 22#include "packet.h"
@@ -1041,7 +1041,7 @@ channel_input_port_open(int payload_len)
1041 int remote_channel, sock = 0, newch, i; 1041 int remote_channel, sock = 0, newch, i;
1042 u_short host_port; 1042 u_short host_port;
1043 char *host, *originator_string; 1043 char *host, *originator_string;
1044 int host_len, originator_len; 1044 unsigned int host_len, originator_len;
1045 struct addrinfo hints, *ai, *aitop; 1045 struct addrinfo hints, *ai, *aitop;
1046 char ntop[NI_MAXHOST], strport[NI_MAXSERV]; 1046 char ntop[NI_MAXHOST], strport[NI_MAXSERV];
1047 int gaierr; 1047 int gaierr;
@@ -1341,7 +1341,7 @@ x11_input_open(int payload_len)
1341 int remote_channel, display_number, sock = 0, newch; 1341 int remote_channel, display_number, sock = 0, newch;
1342 const char *display; 1342 const char *display;
1343 char buf[1024], *cp, *remote_host; 1343 char buf[1024], *cp, *remote_host;
1344 int remote_len; 1344 unsigned int remote_len;
1345 struct addrinfo hints, *ai, *aitop; 1345 struct addrinfo hints, *ai, *aitop;
1346 char strport[NI_MAXSERV]; 1346 char strport[NI_MAXSERV];
1347 int gaierr; 1347 int gaierr;