diff options
author | Damien Miller <djm@mindrot.org> | 1999-11-19 03:03:25 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 1999-11-19 03:03:25 +0100 |
commit | 8029775b77e8f8bc380518f9f734a9d979025bbb (patch) | |
tree | 3905893864df5ce304b30164378fcad91c10bcb0 /auth-skey.c | |
parent | - Move scp from ${libdir}/ssh to ${libexecdir}/ssh at request of (diff) | |
download | openssh-8029775b77e8f8bc380518f9f734a9d979025bbb.tar.xz openssh-8029775b77e8f8bc380518f9f734a9d979025bbb.zip |
- Added autoconf option to enable Kerberos 4 support (untested)
- Added autoconf option to enable AFS support (untested)
- Added autoconf option to enable S/Key support (untested)
- Added autoconf option to enable TCP wrappers support (compiles OK)
Diffstat (limited to 'auth-skey.c')
-rw-r--r-- | auth-skey.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/auth-skey.c b/auth-skey.c index 9ec170494..66e09bb59 100644 --- a/auth-skey.c +++ b/auth-skey.c @@ -1,3 +1,5 @@ +#ifdef SKEY + #include "includes.h" RCSID("$Id: auth-skey.c,v 1.2 1999/10/16 20:57:52 deraadt Exp $"); @@ -147,3 +149,5 @@ skey_fake_keyinfo(char *username) } return skeyprompt; } + +#endif SKEY |