Remove duplicate error on error path.

There's an extra error() call on the listen error path, it looks like
its removal was missed during an upstream sync.
This commit is contained in:
Darren Tucker 2021-07-03 20:34:19 +10:00
parent 888c459925
commit 9d5e31f55d
1 changed files with 0 additions and 1 deletions

View File

@ -3448,7 +3448,6 @@ channel_setup_fwd_listener_tcpip(struct ssh *ssh, int type,
} }
/* Start listening for connections on the socket. */ /* Start listening for connections on the socket. */
if (listen(sock, SSH_LISTEN_BACKLOG) == -1) { if (listen(sock, SSH_LISTEN_BACKLOG) == -1) {
error("listen: %.100s", strerror(errno));
error("listen [%s]:%s: %.100s", ntop, strport, error("listen [%s]:%s: %.100s", ntop, strport,
strerror(errno)); strerror(errno));
close(sock); close(sock);