diff options
Diffstat (limited to 'sys/crypto/crypto.c')
-rw-r--r-- | sys/crypto/crypto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/crypto/crypto.c b/sys/crypto/crypto.c index 3061243ee6b..a9192d0dcce 100644 --- a/sys/crypto/crypto.c +++ b/sys/crypto/crypto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto.c,v 1.29 2001/11/13 17:45:59 deraadt Exp $ */ +/* $OpenBSD: crypto.c,v 1.30 2001/11/13 18:54:32 deraadt Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -178,6 +178,7 @@ crypto_get_driverid(u_int8_t flags) !(crypto_drivers[i].cc_flags & CRYPTOCAP_F_CLEANUP) && crypto_drivers[i].cc_sessions == 0) { crypto_drivers[i].cc_sessions = 1; /* Mark */ + crypto_drivers[i].cc_flags = flags; splx(s); return i; } |