about summary refs log tree commit diff
path: root/Src/Modules/tcp.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2004-11-16 11:04:25 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2004-11-16 11:04:25 +0000
commitfece5e8960b0d6200c1a84690bc242c945fdfb1e (patch)
tree878dee0739275e6b8ec7e8a1154dd7190e65b9a3 /Src/Modules/tcp.c
parent24a68220a105c70a54baa543917e1022ae3e7a8d (diff)
downloadzsh-fece5e8960b0d6200c1a84690bc242c945fdfb1e.tar.gz
zsh-fece5e8960b0d6200c1a84690bc242c945fdfb1e.tar.xz
zsh-fece5e8960b0d6200c1a84690bc242c945fdfb1e.zip
20556: change SOCKLEN_T to ZSOCKLEN_T to avoid clash
Diffstat (limited to 'Src/Modules/tcp.c')
-rw-r--r--Src/Modules/tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c
index 586c2a19e..2120ba833 100644
--- a/Src/Modules/tcp.c
+++ b/Src/Modules/tcp.c
@@ -340,7 +340,7 @@ static int
 bin_ztcp(char *nam, char **args, Options ops, UNUSED(int func))
 {
     int herrno, err=1, destport, force=0, verbose=0, test=0, targetfd=0;
-    SOCKLEN_T  len;
+    ZSOCKLEN_T  len;
     char **addrp, *desthost, *localname, *remotename;
     struct hostent *zthost = NULL, *ztpeer = NULL;
     struct servent *srv;