summaryrefslogtreecommitdiff
path: root/auth2-krb5.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-14 14:31:11 +1000
committerDamien Miller <djm@mindrot.org>2003-05-14 14:31:11 +1000
commit9c617693c2250c62e5e326372bc783e3416a94b0 (patch)
tree14e8fa9856bacb73c9ddee4e200011d1857721ea /auth2-krb5.c
parent3ab496b3dd961423bc5e312fd5dbbef975f4d238 (diff)
- (djm) Make portable build with MIT krb5 (some issues remain)
Diffstat (limited to 'auth2-krb5.c')
-rw-r--r--auth2-krb5.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/auth2-krb5.c b/auth2-krb5.c
index ea4d76da0..b4ff16b62 100644
--- a/auth2-krb5.c
+++ b/auth2-krb5.c
@@ -25,6 +25,8 @@
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: auth2-krb5.c,v 1.1 2003/05/14 02:15:47 markus Exp $"); 26RCSID("$OpenBSD: auth2-krb5.c,v 1.1 2003/05/14 02:15:47 markus Exp $");
27 27
28#ifdef KRB5
29
28#include <krb5.h> 30#include <krb5.h>
29 31
30#include "ssh2.h" 32#include "ssh2.h"
@@ -64,3 +66,5 @@ Authmethod method_kerberos = {
64 userauth_kerberos, 66 userauth_kerberos,
65 &options.kerberos_authentication 67 &options.kerberos_authentication
66}; 68};
69
70#endif /* KRB5 */