diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-06-26 23:04:05 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-06-26 23:04:05 +0000 |
commit | 6966286c0e68e36d6278c28e25ee2bfda7bc9639 (patch) | |
tree | f52785960ec5e643fc74f946d472ed31f37e9846 /usr.bin | |
parent | cc822c60ee607bd3b79d41c7320119edc5d7a22e (diff) |
oops, forgot to #include <canohost.h>; spotted and patch from chl@
Diffstat (limited to 'usr.bin')
-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" |