diff options
author | 2010-06-26 23:04:04 +0000 | |
---|---|---|
committer | 2010-06-26 23:04:04 +0000 | |
commit | 18d79e22c15c0f5258e33aea6417644f96834992 (patch) | |
tree | c0b6238855f0d20ced96cfc53c34945c27b4795c /usr.bin/ssh/ssh.c | |
parent | Do not print "Read from tunnel foo failed" in the failure case of a (diff) | |
download | wireguard-openbsd-18d79e22c15c0f5258e33aea6417644f96834992.tar.xz wireguard-openbsd-18d79e22c15c0f5258e33aea6417644f96834992.zip |
oops, forgot to #include <canohost.h>; spotted and patch from chl@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index b6aa87c40f9..f2a714e50fd 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.340 2010/06/25 23:15:36 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.341 2010/06/26 23:04:04 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -70,6 +70,7 @@ #include "ssh.h" #include "ssh1.h" #include "ssh2.h" +#include "canohost.h" #include "compat.h" #include "cipher.h" #include "packet.h" |