summaryrefslogtreecommitdiff
path: root/auth-options.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth-options.c')
-rw-r--r--auth-options.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/auth-options.c b/auth-options.c
index cd904967a..ca5e1c931 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth-options.c,v 1.39 2006/07/22 20:48:22 stevesk Exp $ */ 1/* $OpenBSD: auth-options.c,v 1.40 2006/08/03 03:34:41 deraadt 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
@@ -17,17 +17,25 @@
17#include <netdb.h> 17#include <netdb.h>
18#include <pwd.h> 18#include <pwd.h>
19#include <string.h> 19#include <string.h>
20#include <stdio.h>
21#include <stdarg.h>
20 22
21#include "xmalloc.h" 23#include "xmalloc.h"
22#include "match.h" 24#include "match.h"
23#include "log.h" 25#include "log.h"
24#include "canohost.h" 26#include "canohost.h"
27#include "buffer.h"
25#include "channels.h" 28#include "channels.h"
26#include "auth-options.h" 29#include "auth-options.h"
27#include "servconf.h" 30#include "servconf.h"
28#include "misc.h" 31#include "misc.h"
29#include "monitor_wrap.h" 32#include "key.h"
33#include "hostfile.h"
30#include "auth.h" 34#include "auth.h"
35#ifdef GSSAPI
36#include "ssh-gss.h"
37#endif
38#include "monitor_wrap.h"
31 39
32/* Flags set authorized_keys flags */ 40/* Flags set authorized_keys flags */
33int no_port_forwarding_flag = 0; 41int no_port_forwarding_flag = 0;