Module Name: src
Committed By: msaitoh
Date: Sun Dec 5 05:03:05 UTC 2021
Modified Files:
src/lib/libc/gen: pwcache.c
src/libexec/identd: identd.c
Log Message:
s/numberic/numeric/ in comment.
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/lib/libc/gen/pwcache.c
cvs rdiff -u -r1.37 -r1.38 src/libexec/identd/identd.c
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/gen/pwcache.c
diff -u src/lib/libc/gen/pwcache.c:1.32 src/lib/libc/gen/pwcache.c:1.33
--- src/lib/libc/gen/pwcache.c:1.32 Thu Nov 8 06:43:52 2018
+++ src/lib/libc/gen/pwcache.c Sun Dec 5 05:03:05 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: pwcache.c,v 1.32 2018/11/08 06:43:52 msaitoh Exp $ */
+/* $NetBSD: pwcache.c,v 1.33 2021/12/05 05:03:05 msaitoh Exp $ */
/*-
* Copyright (c) 1992 Keith Muller.
@@ -74,7 +74,7 @@
#if 0
static char sccsid[] = "@(#)cache.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: pwcache.c,v 1.32 2018/11/08 06:43:52 msaitoh Exp $");
+__RCSID("$NetBSD: pwcache.c,v 1.33 2021/12/05 05:03:05 msaitoh Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -364,7 +364,7 @@ group_from_gid(gid_t gid, int noname)
if ((gr = (*_pwcache_getgrgid)(gid)) == NULL) {
/*
* no match for this gid in the local group file, put in
- * a string that is the gid in numberic format
+ * a string that is the gid in numeric format
*/
if (ptr == NULL)
return (NULL);
Index: src/libexec/identd/identd.c
diff -u src/libexec/identd/identd.c:1.37 src/libexec/identd/identd.c:1.38
--- src/libexec/identd/identd.c:1.37 Thu Sep 16 21:29:41 2021
+++ src/libexec/identd/identd.c Sun Dec 5 05:03:05 2021
@@ -1,4 +1,4 @@
-/* $NetBSD: identd.c,v 1.37 2021/09/16 21:29:41 andvar Exp $ */
+/* $NetBSD: identd.c,v 1.38 2021/12/05 05:03:05 msaitoh Exp $ */
/*
* identd.c - TCP/IP Ident protocol server.
@@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: identd.c,v 1.37 2021/09/16 21:29:41 andvar Exp $");
+__RCSID("$NetBSD: identd.c,v 1.38 2021/12/05 05:03:05 msaitoh Exp $");
#include <sys/param.h>
#include <sys/socket.h>
@@ -513,7 +513,7 @@ idhandle(int fd, const char *charset, co
return 0;
}
- /* Return numberic user ID? */
+ /* Return numeric user ID? */
if (nflag)
(void)snprintf(idbuf, sizeof(idbuf), "%u", uid);
else