diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-24 17:19:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-24 17:19:19 +0000 |
commit | f6451b91af8454c1e571f8ac560a1581a5f08be4 (patch) | |
tree | ccc5b714c9b7743eb9dc1154707bd36937b6c2dd | |
parent | 898ad3b71a07421cba86013ccbeadde710936bda (diff) |
KNF
-rw-r--r-- | sys/crypto/cryptodev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/crypto/cryptodev.c b/sys/crypto/cryptodev.c index b60d71f2c05..85538c1e452 100644 --- a/sys/crypto/cryptodev.c +++ b/sys/crypto/cryptodev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.c,v 1.21 2001/08/17 17:37:12 ben Exp $ */ +/* $OpenBSD: cryptodev.c,v 1.22 2001/08/24 17:19:18 deraadt Exp $ */ /* * Copyright (c) 2001 Theo de Raadt @@ -367,7 +367,7 @@ crypto_op(struct csession *cse, struct crypt_op *cop, struct proc *p) bcopy(cse->tmp_iv, crde->crd_iv, cse->txform->blocksize); crde->crd_flags |= CRD_F_IV_EXPLICIT | CRD_F_IV_PRESENT; crde->crd_skip = 0; - } else if(cse->cipher == CRYPTO_ARC4) { /* XXX use flag? */ + } else if (cse->cipher == CRYPTO_ARC4) { /* XXX use flag? */ crde->crd_skip = 0; } else { crde->crd_flags |= CRD_F_IV_PRESENT; |