diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-07-11 00:24:54 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-07-11 00:24:54 +0000 |
commit | b20036032d4c4d429b49d02ac9150e7300c877a7 (patch) | |
tree | 81637a1f2d2a799e0dd55543335b055ebbb526ec /usr.bin/ssh | |
parent | a4e2702db893f3fe5c08822eeaf71af4e4a83f7b (diff) |
make it compilable in all 4 combination of KRB4/KRB5 settings. dugsong ok
XXX isn't it sensitive to the order of -I/usr/include/kerberosIV and
-I/usr/include/kerberosV?
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index b5be29a3cf7..713a9425134 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -10,9 +10,9 @@ */ #include "includes.h" -RCSID("$OpenBSD: servconf.c,v 1.87 2001/07/08 15:23:38 stevesk Exp $"); +RCSID("$OpenBSD: servconf.c,v 1.88 2001/07/11 00:24:53 itojun Exp $"); -#ifdef KRB4 +#if defined(KRB4) || defined(KRB5) #include <krb.h> #endif #ifdef AFS |