summaryrefslogtreecommitdiff
path: root/lib/libc/string/memset.3
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/string/memset.3')
-rw-r--r--lib/libc/string/memset.36
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/memset.3 b/lib/libc/string/memset.3
index 777b167e804..bc51985b354 100644
--- a/lib/libc/string/memset.3
+++ b/lib/libc/string/memset.3
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)memset.3 8.1 (Berkeley) 6/4/93
-.\" $NetBSD: memset.3,v 1.10 2013/06/23 16:44:06 riastradh Exp $
+.\" $NetBSD: memset.3,v 1.11 2013/06/24 04:21:20 riastradh Exp $
.\"
.Dd June 23, 2013
.Dt MEMSET 3
@@ -67,10 +67,10 @@ if it can prove that the string will not be used by the program again,
for example if it is allocated on the stack and about to out of scope.
If you want to guarantee that zeros are written to memory, for example
to sanitize a buffer holding a cryptographic secret, use
-.Xr explicit_bzero .
+.Xr explicit_memset .
.Sh SEE ALSO
.Xr bzero 3 ,
-.Xr explicit_bzero 3 ,
+.Xr explicit_memset 3 ,
.Xr swab 3
.Sh STANDARDS
The