about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2002-05-24 13:01:57 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2002-05-24 13:01:57 +0000
commit00d476ac200660819c0e534201d7f23bc444f4e4 (patch)
treeccafce43e2ed4bb81aa9bef9bde7f776641f930a /Src
parent205e07663f21d4e7fe7863d976f1e73517a914bf (diff)
downloadzsh-00d476ac200660819c0e534201d7f23bc444f4e4.tar.gz
zsh-00d476ac200660819c0e534201d7f23bc444f4e4.tar.xz
zsh-00d476ac200660819c0e534201d7f23bc444f4e4.zip
17220: Src/Modules/tcp.c: bugs using ztcp to list connections.
Diffstat (limited to 'Src')
-rw-r--r--Src/Modules/tcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c
index 33b7a613a..27d11aea6 100644
--- a/Src/Modules/tcp.c
+++ b/Src/Modules/tcp.c
@@ -565,16 +565,16 @@ bin_ztcp(char *nam, char **args, char *ops, int func)
 
 		if (sess->fd != -1)
 		{
-		    zthost = gethostbyaddr((const void *)&(sess->sock.in.sin_addr), sizeof(struct sockaddr_in), AF_INET);
+		    zthost = gethostbyaddr((const void *)&(sess->sock.in.sin_addr), sizeof(sess->sock.in.sin_addr), AF_INET);
 		    if (zthost)
 			localname = zthost->h_name;
 		    else
 			localname = ztrdup(inet_ntoa(sess->sock.in.sin_addr));
-		    ztpeer = gethostbyaddr((const void *)&(sess->peer.in.sin_addr), sizeof(struct sockaddr_in), AF_INET);
+		    ztpeer = gethostbyaddr((const void *)&(sess->peer.in.sin_addr), sizeof(sess->peer.in.sin_addr), AF_INET);
 		    if (ztpeer)
 			remotename = ztpeer->h_name;
 		    else
-			remotename = ztrdup(inet_ntoa(sess->sock.in.sin_addr));
+			remotename = ztrdup(inet_ntoa(sess->peer.in.sin_addr));
 		    fprintf(shout, "%s:%d %s %s:%d is on fd %d%s\n",
 			    localname, ntohs(sess->sock.in.sin_port),
 			    ((sess->flags & ZTCP_LISTEN) ? "-<" :