Module Name: src
Committed By: gutteridge
Date: Wed Oct 9 23:16:03 UTC 2024
Modified Files:
src/sys/lib/libkern: pmatch.c
Log Message:
pmatch.c: fix a typo in a comment
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/sys/lib/libkern/pmatch.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/lib/libkern/pmatch.c
diff -u src/sys/lib/libkern/pmatch.c:1.8 src/sys/lib/libkern/pmatch.c:1.9
--- src/sys/lib/libkern/pmatch.c:1.8 Sat Aug 24 22:30:26 2024
+++ src/sys/lib/libkern/pmatch.c Wed Oct 9 23:16:03 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: pmatch.c,v 1.8 2024/08/24 22:30:26 christos Exp $ */
+/* $NetBSD: pmatch.c,v 1.9 2024/10/09 23:16:03 gutteridge Exp $ */
/*-
* Copyright (c) 1980, 1991 The Regents of the University of California.
@@ -44,7 +44,7 @@ int pmatch(const char *, const char *, c
* Return 1 on substring match.
* Return 0 on no match.
* Return -1 on error.
- * *estr will point to the end of thelongest exact or substring match.
+ * *estr will point to the end of the longest exact or substring match.
*/
int
pmatch(const char *string, const char *pattern, const char **estr)