diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-01 19:23:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-02-01 19:23:55 +0000 |
commit | 0afc3bb7e9300a87a23bc790dc733b252af7cf2d (patch) | |
tree | 94188090fbbff4e1eb43dbf92db446ca5bd6df1f /sys/arch/i386 | |
parent | cb684473044a51243a4d4f046d7ffade616079b9 (diff) |
set i386_has_xcrypt at the right place, which exposes itself as
sysctl machdep.xcrypt
Do not enabled yet..
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index 2e6837f7741..aa916ace64c 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.271 2004/02/01 19:22:30 deraadt Exp $ */ +/* $OpenBSD: machdep.c,v 1.272 2004/02/01 19:23:54 deraadt Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -1237,6 +1237,9 @@ viac3_crypto_setup(void) crypto_register(vc3_sc->sc_cid, algs, viac3_crypto_newsession, viac3_crypto_freesession, viac3_crypto_process); +#ifdef notdef + i386_has_xcrypt = 1; +#endif } int |