summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/auth.h b/auth.h
index 5f9fb6f10..6688c3dc5 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.53 2006/04/20 09:27:09 djm Exp $ */ 1/* $OpenBSD: auth.h,v 1.54 2006/07/06 16:03:53 stevesk Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -28,10 +28,11 @@
28#ifndef AUTH_H 28#ifndef AUTH_H
29#define AUTH_H 29#define AUTH_H
30 30
31#include <sys/types.h>
32
31#include <signal.h> 33#include <signal.h>
34#include <pwd.h>
32 35
33#include "key.h"
34#include "hostfile.h"
35#include "buffer.h" 36#include "buffer.h"
36#include <openssl/rsa.h> 37#include <openssl/rsa.h>
37 38
@@ -45,6 +46,9 @@
45#include <krb5.h> 46#include <krb5.h>
46#endif 47#endif
47 48
49#include "key.h"
50#include "hostfile.h"
51
48typedef struct Authctxt Authctxt; 52typedef struct Authctxt Authctxt;
49typedef struct Authmethod Authmethod; 53typedef struct Authmethod Authmethod;
50typedef struct KbdintDevice KbdintDevice; 54typedef struct KbdintDevice KbdintDevice;