From 2a55dc74ef3037694ba75da801f0d801605499f0 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 18 Apr 2002 11:39:13 +0000 Subject: 17011: Src/Modules/tcp.c, Src/Modules/zftp.c: restore freehostent() incorrectly removed in 16172. --- Src/Modules/tcp.c | 2 +- Src/Modules/zftp.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'Src') diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c index 9109ca7c1..eb4685b39 100644 --- a/Src/Modules/tcp.c +++ b/Src/Modules/tcp.c @@ -194,7 +194,7 @@ zsh_getipnodebyname(char const *name, int af, int flags, int *errorp) /**/ mod_export void -zfreehostent(struct hostent *ptr) +freehostent(struct hostent *ptr) { } diff --git a/Src/Modules/zftp.c b/Src/Modules/zftp.c index 9408c7a1f..6ee0f0156 100644 --- a/Src/Modules/zftp.c +++ b/Src/Modules/zftp.c @@ -1793,7 +1793,7 @@ zftp_open(char *name, char **args, int flags) tcp_close(zfsess->control); zfsess->control = NULL; } - zfreehostent(zhostp); + freehostent(zhostp); zfunsetparam("ZFTP_HOST"); FAILED(); zwarnnam(name, "socket failed: %e", NULL, errno); @@ -1821,7 +1821,7 @@ zftp_open(char *name, char **args, int flags) } if (err) { - zfreehostent(zhostp); + freehostent(zhostp); zfclose(0); FAILED(); zwarnnam(name, "connect failed: %e", NULL, errno); @@ -1842,7 +1842,7 @@ zftp_open(char *name, char **args, int flags) zsh_inet_ntop(af, *addrp, pbuf, sizeof(pbuf)); zfsetparam("ZFTP_IP", ztrdup(pbuf), ZFPM_READONLY); } - zfreehostent(zhostp); + freehostent(zhostp); /* now we can talk to the control connection */ zcfinish = 0; -- cgit 1.4.1