mirror of git://anongit.mindrot.org/openssh.git
- djm@cvs.openbsd.org 2010/06/26 23:04:04
[ssh.c] oops, forgot to #include <canohost.h>; spotted and patch from chl@
This commit is contained in:
parent
cede1dbc55
commit
b96c441ee2
|
@ -3,6 +3,9 @@
|
||||||
- jmc@cvs.openbsd.org 2010/06/26 00:57:07
|
- jmc@cvs.openbsd.org 2010/06/26 00:57:07
|
||||||
[ssh_config.5]
|
[ssh_config.5]
|
||||||
tweak previous;
|
tweak previous;
|
||||||
|
- djm@cvs.openbsd.org 2010/06/26 23:04:04
|
||||||
|
[ssh.c]
|
||||||
|
oops, forgot to #include <canohost.h>; spotted and patch from chl@
|
||||||
|
|
||||||
20100627
|
20100627
|
||||||
- (tim) [openbsd-compat/port-uw.c] Reorder includes. auth-options.h now needs
|
- (tim) [openbsd-compat/port-uw.c] Reorder includes. auth-options.h now needs
|
||||||
|
|
3
ssh.c
3
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>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -79,6 +79,7 @@
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "ssh1.h"
|
#include "ssh1.h"
|
||||||
#include "ssh2.h"
|
#include "ssh2.h"
|
||||||
|
#include "canohost.h"
|
||||||
#include "compat.h"
|
#include "compat.h"
|
||||||
#include "cipher.h"
|
#include "cipher.h"
|
||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
|
|
Loading…
Reference in New Issue