summaryrefslogtreecommitdiff
path: root/sys/crypto
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2002-06-10 19:36:44 +0000
committerMarc Espie <espie@cvs.openbsd.org>2002-06-10 19:36:44 +0000
commit7cf792e5d7c51e997bb276f46402d3bc000a7d61 (patch)
tree717718a51dcd608d7a0e8e3fe75856e00219b03f /sys/crypto
parent5bc3e3e63232c4932003f2dbcebffea80240fe91 (diff)
__FUNCTION__ -> __func__
Diffstat (limited to 'sys/crypto')
-rw-r--r--sys/crypto/criov.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/crypto/criov.c b/sys/crypto/criov.c
index 9ce848e1469..165950ae7cd 100644
--- a/sys/crypto/criov.c
+++ b/sys/crypto/criov.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: criov.c,v 1.10 2002/03/01 02:46:57 provos Exp $ */
+/* $OpenBSD: criov.c,v 1.11 2002/06/10 19:36:43 espie Exp $ */
/*
* Copyright (c) 1999 Theo de Raadt
@@ -144,9 +144,9 @@ cuio_apply(struct uio *uio, int off, int len,
unsigned int count;
if (len < 0)
- panic("%s: len %d < 0", __FUNCTION__, len);
+ panic("%s: len %d < 0", __func__, len);
if (off < 0)
- panic("%s: off %d < 0", __FUNCTION__, off);
+ panic("%s: off %d < 0", __func__, off);
ind = 0;
while (off > 0) {