Module Name: src
Committed By: wiz
Date: Wed Sep 24 18:43:21 UTC 2014
Modified Files:
src/lib/libc/string: strstr.3
Log Message:
NUL byte instead of null byte.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/lib/libc/string/strstr.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/string/strstr.3
diff -u src/lib/libc/string/strstr.3:1.11 src/lib/libc/string/strstr.3:1.12
--- src/lib/libc/string/strstr.3:1.11 Wed Sep 24 18:16:37 2014
+++ src/lib/libc/string/strstr.3 Wed Sep 24 18:43:21 2014
@@ -31,7 +31,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)strstr.3 8.1 (Berkeley) 6/4/93
-.\" $NetBSD: strstr.3,v 1.11 2014/09/24 18:16:37 christos Exp $
+.\" $NetBSD: strstr.3,v 1.12 2014/09/24 18:43:21 wiz Exp $
.\"
.Dd September 24, 2014
.Dt STRSTR 3
@@ -66,7 +66,7 @@ but ignores the case of both strings.
The
.Fn strnstr
function
-locates the first occurrence of the null-terminated string
+locates the first occurrence of the NUL-terminated string
.Fa little
in the string
.Fa big ,