summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index b1fc45c50..5884b95be 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: servconf.c,v 1.163 2006/08/01 23:36:12 stevesk Exp $ */ 1/* $OpenBSD: servconf.c,v 1.164 2006/08/03 03:34:42 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved 4 * All rights reserved
@@ -19,16 +19,20 @@
19#include <stdio.h> 19#include <stdio.h>
20#include <stdlib.h> 20#include <stdlib.h>
21#include <string.h> 21#include <string.h>
22#include <signal.h>
22#include <unistd.h> 23#include <unistd.h>
24#include <stdarg.h>
23 25
26#include "xmalloc.h"
24#include "ssh.h" 27#include "ssh.h"
25#include "log.h" 28#include "log.h"
29#include "buffer.h"
26#include "servconf.h" 30#include "servconf.h"
27#include "xmalloc.h"
28#include "compat.h" 31#include "compat.h"
29#include "pathnames.h" 32#include "pathnames.h"
30#include "misc.h" 33#include "misc.h"
31#include "cipher.h" 34#include "cipher.h"
35#include "key.h"
32#include "kex.h" 36#include "kex.h"
33#include "mac.h" 37#include "mac.h"
34#include "match.h" 38#include "match.h"