summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-07-02 13:34:24 +1000
committerDamien Miller <djm@mindrot.org>2010-07-02 13:34:24 +1000
commitb96c441ee2e4d8ffae756d0d74e2777149c91067 (patch)
treefecc612883ba02bfe970ccbe974158e8974ac5dd
parentcede1dbc557df3801bd1628c10543b7385ce50f7 (diff)
- djm@cvs.openbsd.org 2010/06/26 23:04:04
[ssh.c] oops, forgot to #include <canohost.h>; spotted and patch from chl@
-rw-r--r--ChangeLog3
-rw-r--r--ssh.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d64ea5ce6..20b39f0de 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,9 @@
3 - jmc@cvs.openbsd.org 2010/06/26 00:57:07 3 - jmc@cvs.openbsd.org 2010/06/26 00:57:07
4 [ssh_config.5] 4 [ssh_config.5]
5 tweak previous; 5 tweak previous;
6 - djm@cvs.openbsd.org 2010/06/26 23:04:04
7 [ssh.c]
8 oops, forgot to #include <canohost.h>; spotted and patch from chl@
6 9
720100627 1020100627
8 - (tim) [openbsd-compat/port-uw.c] Reorder includes. auth-options.h now needs 11 - (tim) [openbsd-compat/port-uw.c] Reorder includes. auth-options.h now needs
diff --git a/ssh.c b/ssh.c
index d8f0b214f..a1cf01513 100644
--- a/ssh.c
+++ b/ssh.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh.c,v 1.340 2010/06/25 23:15:36 djm Exp $ */ 1/* $OpenBSD: ssh.c,v 1.341 2010/06/26 23:04:04 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -79,6 +79,7 @@
79#include "ssh.h" 79#include "ssh.h"
80#include "ssh1.h" 80#include "ssh1.h"
81#include "ssh2.h" 81#include "ssh2.h"
82#include "canohost.h"
82#include "compat.h" 83#include "compat.h"
83#include "cipher.h" 84#include "cipher.h"
84#include "packet.h" 85#include "packet.h"