summaryrefslogtreecommitdiff
path: root/sys/crypto/cryptodev.c
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-23 22:37:20 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2001-06-23 22:37:20 +0000
commit5c5ccbb4415b224ce1a1bfcaac7245f363f7678c (patch)
tree47a4bff791b4e13bf4c4bd70c21e12194f98bd1a /sys/crypto/cryptodev.c
parent78ee77e45460a963b48c4d45025ae0e93d794a97 (diff)
Use C-style comments...
Diffstat (limited to 'sys/crypto/cryptodev.c')
-rw-r--r--sys/crypto/cryptodev.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/crypto/cryptodev.c b/sys/crypto/cryptodev.c
index a94f6198e97..5e5c80a242e 100644
--- a/sys/crypto/cryptodev.c
+++ b/sys/crypto/cryptodev.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cryptodev.c,v 1.17 2001/06/23 22:36:10 angelos Exp $ */
+/* $OpenBSD: cryptodev.c,v 1.18 2001/06/23 22:37:19 angelos Exp $ */
/*
* Copyright (c) 2001 Theo de Raadt
@@ -369,7 +369,7 @@ crypto_op(struct csession *cse, struct crypt_op *cop, struct proc *p)
error = EINVAL;
goto bail;
}
- if ((error = copyin(cop->mac, cse->tmp_mac, 16))) /* XXX */
+ if ((error = copyin(cop->mac, cse->tmp_mac, 16))) /* XXX */
goto bail;
crp->crp_mac_trunc_len = 16; /* XXX */
}
@@ -377,7 +377,7 @@ crypto_op(struct csession *cse, struct crypt_op *cop, struct proc *p)
crypto_dispatch(crp);
error = tsleep(cse, PSOCK, "crydev", 0);
if (error) {
- /// XXX can this happen? if so, how do we recover?
+ /* XXX can this happen? if so, how do we recover? */
goto bail;
}