summaryrefslogtreecommitdiff
path: root/nchan.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-07-12 22:22:46 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-07-12 22:22:46 +1000
commit39972493467dd9a32a117e85bcbff9aa1e7f3c8d (patch)
tree652f02d97e6237c0b0a7b202e60517bdc7c14720 /nchan.c
parente7d4b19f755c0d33122ef373e54b69e6b93cb0b4 (diff)
- stevesk@cvs.openbsd.org 2006/07/11 20:07:25
[scp.c auth.c monitor.c serverloop.c sftp-server.c sshpty.c readpass.c sshd.c monitor_wrap.c monitor_fdpass.c ssh-agent.c ttymodes.c atomicio.c includes.h session.c sshlogin.c monitor_mm.c packet.c sshconnect2.c sftp-client.c nchan.c clientloop.c sftp.c misc.c canohost.c channels.c ssh-keygen.c progressmeter.c uidswap.c msg.c readconf.c sshconnect.c] move #include <errno.h> out of includes.h; ok markus@
Diffstat (limited to 'nchan.c')
-rw-r--r--nchan.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/nchan.c b/nchan.c
index 58b0e98d5..43816a65b 100644
--- a/nchan.c
+++ b/nchan.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: nchan.c,v 1.54 2006/07/08 21:47:12 stevesk Exp $ */ 1/* $OpenBSD: nchan.c,v 1.55 2006/07/11 20:07:25 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved. 3 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
4 * 4 *
@@ -28,6 +28,8 @@
28#include <sys/types.h> 28#include <sys/types.h>
29#include <sys/socket.h> 29#include <sys/socket.h>
30 30
31#include <errno.h>
32
31#include "ssh1.h" 33#include "ssh1.h"
32#include "ssh2.h" 34#include "ssh2.h"
33#include "buffer.h" 35#include "buffer.h"