Whitespace sync with upstream.

This commit is contained in:
Darren Tucker 2018-02-13 09:07:29 +11:00
parent 19edfd4af7
commit 3c51143c63
2 changed files with 1 additions and 1 deletions

View File

@ -551,6 +551,7 @@ server_request_tun(struct ssh *ssh)
if (sock < 0)
goto done;
debug("Tunnel forwarding using interface %s", ifname);
c = channel_new(ssh, "tun", SSH_CHANNEL_OPEN, sock, sock, -1,
CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1);
c->datagram = 1;

View File

@ -335,7 +335,6 @@ int
do_exec_no_pty(struct ssh *ssh, Session *s, const char *command)
{
pid_t pid;
#ifdef USE_PIPES
int pin[2], pout[2], perr[2];