diff options
author | 2000-11-09 14:26:24 +0000 | |
---|---|---|
committer | 2000-11-09 14:26:24 +0000 | |
commit | 67dee03d97a60616914d9b9391e457d911d2a791 (patch) | |
tree | c90b3568521fbd03bb2579c73a274c68705b2344 | |
parent | zap old file. (diff) | |
download | wireguard-openbsd-67dee03d97a60616914d9b9391e457d911d2a791.tar.xz wireguard-openbsd-67dee03d97a60616914d9b9391e457d911d2a791.zip |
indentation nits.
-rw-r--r-- | sys/crypto/cryptosoft.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/crypto/cryptosoft.c b/sys/crypto/cryptosoft.c index 92d65cb2827..1435d8f9005 100644 --- a/sys/crypto/cryptosoft.c +++ b/sys/crypto/cryptosoft.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptosoft.c,v 1.15 2000/10/15 01:12:24 angelos Exp $ */ +/* $OpenBSD: cryptosoft.c,v 1.16 2000/11/09 14:26:24 art Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -462,7 +462,7 @@ swcr_newsession(u_int32_t *sid, struct cryptoini *cri) txf = &enc_xform_skipjack; goto enccommon; - case CRYPTO_RIJNDAEL128_CBC: + case CRYPTO_RIJNDAEL128_CBC: txf = &enc_xform_rijndael128; goto enccommon; @@ -608,7 +608,7 @@ swcr_freesession(u_int64_t tid) case CRYPTO_BLF_CBC: case CRYPTO_CAST_CBC: case CRYPTO_SKIPJACK_CBC: - case CRYPTO_RIJNDAEL128_CBC: + case CRYPTO_RIJNDAEL128_CBC: txf = swd->sw_exf; if (swd->sw_kschedule) |