diff options
author | Damien Miller <djm@mindrot.org> | 2010-07-02 05:34:24 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-07-02 05:34:24 +0200 |
commit | b96c441ee2e4d8ffae756d0d74e2777149c91067 (patch) | |
tree | fecc612883ba02bfe970ccbe974158e8974ac5dd /ssh.c | |
parent | - jmc@cvs.openbsd.org 2010/06/26 00:57:07 (diff) | |
download | openssh-b96c441ee2e4d8ffae756d0d74e2777149c91067.tar.xz openssh-b96c441ee2e4d8ffae756d0d74e2777149c91067.zip |
- djm@cvs.openbsd.org 2010/06/26 23:04:04
[ssh.c]
oops, forgot to #include <canohost.h>; spotted and patch from chl@
Diffstat (limited to '')
-rw-r--r-- | ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 @@ -79,6 +79,7 @@ #include "ssh.h" #include "ssh1.h" #include "ssh2.h" +#include "canohost.h" #include "compat.h" #include "cipher.h" #include "packet.h" |