diff options
author | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2015-10-24 20:48:47 +0100 |
---|---|---|
committer | Peter Stephenson <p.w.stephenson@ntlworld.com> | 2015-10-24 20:48:47 +0100 |
commit | 15490398d7553605c422d8ab0e59e69e25111df4 (patch) | |
tree | 3a98fd7979403ee3b5b7c39b437eff0f8dcc0a1d /Src/Modules/tcp.c | |
parent | 1f6dcf9bcdade41886e36826196e79502a9afa26 (diff) | |
download | zsh-15490398d7553605c422d8ab0e59e69e25111df4.tar.gz zsh-15490398d7553605c422d8ab0e59e69e25111df4.tar.xz zsh-15490398d7553605c422d8ab0e59e69e25111df4.zip |
36944: extend fd management to zsocket
Diffstat (limited to 'Src/Modules/tcp.c')
-rw-r--r-- | Src/Modules/tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c index 274f01ffc..7b0dcc74a 100644 --- a/Src/Modules/tcp.c +++ b/Src/Modules/tcp.c @@ -237,7 +237,7 @@ tcp_socket(int domain, int type, int protocol, int ztflags) sess->fd = socket(domain, type, protocol); /* We'll check failure and tidy up in caller */ - addmodulefd(sess->fd, FALSE); + addmodulefd(sess->fd, FDT_MODULE); return sess; } @@ -549,7 +549,7 @@ bin_ztcp(char *nam, char **args, Options ops, UNUSED(int func)) } /* redup expects fd is already registered */ - addmodulefd(rfd, FALSE); + addmodulefd(rfd, FDT_MODULE); if (targetfd) { sess->fd = redup(rfd, targetfd); |