summaryrefslogtreecommitdiff
path: root/auth2-chall.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth2-chall.c')
-rw-r--r--auth2-chall.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/auth2-chall.c b/auth2-chall.c
index 89b261e61..8358140b9 100644
--- a/auth2-chall.c
+++ b/auth2-chall.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-chall.c,v 1.29 2006/08/01 23:22:47 stevesk Exp $ */ 1/* $OpenBSD: auth2-chall.c,v 1.30 2006/08/03 03:34:41 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * Copyright (c) 2001 Per Allansson. All rights reserved. 4 * Copyright (c) 2001 Per Allansson. All rights reserved.
@@ -23,16 +23,21 @@
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26
26#include "includes.h" 27#include "includes.h"
27 28
29#include <sys/types.h>
30
28#include <stdio.h> 31#include <stdio.h>
29#include <string.h> 32#include <string.h>
30 33
34#include "xmalloc.h"
31#include "ssh2.h" 35#include "ssh2.h"
36#include "key.h"
37#include "hostfile.h"
32#include "auth.h" 38#include "auth.h"
33#include "buffer.h" 39#include "buffer.h"
34#include "packet.h" 40#include "packet.h"
35#include "xmalloc.h"
36#include "dispatch.h" 41#include "dispatch.h"
37#include "log.h" 42#include "log.h"
38#include "servconf.h" 43#include "servconf.h"