summaryrefslogtreecommitdiff
path: root/sys/crypto
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-04-18 06:21:15 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-04-18 06:21:15 +0000
commit90a55c74353b0cf687e8480335a51f6e5e68a912 (patch)
treeed54c0d514c38e27881464eb5652abd11362f337 /sys/crypto
parent180083cb7709f32aa62ee6975b01ca38f530e79f (diff)
Add a few newlines for readability.
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/crypto.c2
-rw-r--r--sys/crypto/cryptosoft.c1
2 files changed, 3 insertions, 0 deletions
diff --git a/sys/crypto/crypto.c b/sys/crypto/crypto.c
index 4ef43f154f2..c30c50dabb3 100644
--- a/sys/crypto/crypto.c
+++ b/sys/crypto/crypto.c
@@ -302,6 +302,7 @@ crypto_dispatch(struct cryptop *crp)
/* Migrate session */
for (crd = crp->crp_desc; crd->crd_next; crd = crd->crd_next)
crd->CRD_INI.cri_next = &(crd->crd_next->CRD_INI);
+
if (crypto_newsession(&nid, &(crp->crp_desc->CRD_INI)) == 0)
crp->crp_sid = nid;
@@ -317,6 +318,7 @@ crypto_dispatch(struct cryptop *crp)
/* Migrate session */
for (crd = crp->crp_desc; crd->crd_next; crd = crd->crd_next)
crd->CRD_INI.cri_next = &(crd->crd_next->CRD_INI);
+
if (crypto_newsession(&nid, &(crp->crp_desc->CRD_INI)) == 0)
crp->crp_sid = nid;
diff --git a/sys/crypto/cryptosoft.c b/sys/crypto/cryptosoft.c
index 5091ea61b15..87e5909160a 100644
--- a/sys/crypto/cryptosoft.c
+++ b/sys/crypto/cryptosoft.c
@@ -720,6 +720,7 @@ swcr_process(struct cryptop *crp)
/* Migrate session */
for (crd = crp->crp_desc; crd->crd_next; crd = crd->crd_next)
crd->CRD_INI.cri_next = &(crd->crd_next->CRD_INI);
+
if (crypto_newsession(&nid, &(crp->crp_desc->CRD_INI)) == 0)
crp->crp_sid = nid;
}