Module Name: src Committed By: msaitoh Date: Sat Jun 24 05:15:42 UTC 2023
Modified Files: src/usr.sbin/lpr/lpr: lpr.c src/usr.sbin/makemandb: run_query.3 src/usr.sbin/mld6query: mld6.c src/usr.sbin/moused: moused.c Log Message: Fix typo in comment. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/usr.sbin/lpr/lpr/lpr.c cvs rdiff -u -r1.5 -r1.6 src/usr.sbin/makemandb/run_query.3 cvs rdiff -u -r1.15 -r1.16 src/usr.sbin/mld6query/mld6.c cvs rdiff -u -r1.29 -r1.30 src/usr.sbin/moused/moused.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/lpr/lpr/lpr.c diff -u src/usr.sbin/lpr/lpr/lpr.c:1.46 src/usr.sbin/lpr/lpr/lpr.c:1.47 --- src/usr.sbin/lpr/lpr/lpr.c:1.46 Sat Jun 2 03:32:53 2012 +++ src/usr.sbin/lpr/lpr/lpr.c Sat Jun 24 05:15:42 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: lpr.c,v 1.46 2012/06/02 03:32:53 jnemeth Exp $ */ +/* $NetBSD: lpr.c,v 1.47 2023/06/24 05:15:42 msaitoh Exp $ */ /* * Copyright (c) 1983, 1989, 1993 @@ -42,7 +42,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 19 #if 0 static char sccsid[] = "@(#)lpr.c 8.4 (Berkeley) 4/28/95"; #else -__RCSID("$NetBSD: lpr.c,v 1.46 2012/06/02 03:32:53 jnemeth Exp $"); +__RCSID("$NetBSD: lpr.c,v 1.47 2023/06/24 05:15:42 msaitoh Exp $"); #endif #endif /* not lint */ @@ -176,7 +176,7 @@ main(int argc, char *argv[]) jobname = optarg; break; - case 'P': /* specifiy printer name */ + case 'P': /* specify printer name */ printer = optarg; break; Index: src/usr.sbin/makemandb/run_query.3 diff -u src/usr.sbin/makemandb/run_query.3:1.5 src/usr.sbin/makemandb/run_query.3:1.6 --- src/usr.sbin/makemandb/run_query.3:1.5 Sun Sep 11 20:32:37 2022 +++ src/usr.sbin/makemandb/run_query.3 Sat Jun 24 05:15:42 2023 @@ -1,4 +1,4 @@ -.\" $NetBSD: run_query.3,v 1.5 2022/09/11 20:32:37 gutteridge Exp $ +.\" $NetBSD: run_query.3,v 1.6 2023/06/24 05:15:42 msaitoh Exp $ .\" .\" Copyright (c) 2011 Abhinav Upadhyay <er.abhinav.upadh...@gmail.com> .\" All rights reserved. @@ -95,7 +95,7 @@ Alternatively pass as to search in all the sections. .It Li int nrec This specifies the number of matching rows to fetch from the database. -Specifiy a negative value to fetch all the matching rows. +Specify a negative value to fetch all the matching rows. .It Li int offset This specifies the offset within the result-set. Use it to specify the position Index: src/usr.sbin/mld6query/mld6.c diff -u src/usr.sbin/mld6query/mld6.c:1.15 src/usr.sbin/mld6query/mld6.c:1.16 --- src/usr.sbin/mld6query/mld6.c:1.15 Wed Jul 20 23:19:18 2016 +++ src/usr.sbin/mld6query/mld6.c Sat Jun 24 05:15:42 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: mld6.c,v 1.15 2016/07/20 23:19:18 christos Exp $ */ +/* $NetBSD: mld6.c,v 1.16 2023/06/24 05:15:42 msaitoh Exp $ */ /* $KAME: mld6.c,v 1.9 2000/12/04 06:29:37 itojun Exp $ */ /* @@ -216,7 +216,7 @@ make_msg(int idx, struct in6_addr *addr, pi = (struct in6_pktinfo *)CMSG_DATA(cmsgp); pi->ipi6_ifindex = idx; memset(&pi->ipi6_addr, 0, sizeof(pi->ipi6_addr)); - /* specifiy to insert router alert option in a hop-by-hop opt hdr. */ + /* specify to insert router alert option in a hop-by-hop opt hdr. */ cmsgp = CMSG_NXTHDR(&m, cmsgp); #ifdef USE_RFC2292BIS cmsgp->cmsg_len = CMSG_LEN(hbhlen); Index: src/usr.sbin/moused/moused.c diff -u src/usr.sbin/moused/moused.c:1.29 src/usr.sbin/moused/moused.c:1.30 --- src/usr.sbin/moused/moused.c:1.29 Wed May 11 14:58:01 2022 +++ src/usr.sbin/moused/moused.c Sat Jun 24 05:15:42 2023 @@ -1,4 +1,4 @@ -/* $NetBSD: moused.c,v 1.29 2022/05/11 14:58:01 andvar Exp $ */ +/* $NetBSD: moused.c,v 1.30 2023/06/24 05:15:42 msaitoh Exp $ */ /** ** Copyright (c) 1995 Michael Smith, All rights reserved. ** @@ -48,7 +48,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: moused.c,v 1.29 2022/05/11 14:58:01 andvar Exp $"); +__RCSID("$NetBSD: moused.c,v 1.30 2023/06/24 05:15:42 msaitoh Exp $"); #endif /* not lint */ #include <ctype.h> @@ -2629,7 +2629,7 @@ pnpparse(pnpid_t *id, char *buf, int len } /* * PnP COM spec prior to v0.96 allowed '*' in this field, - * it's not allowed now; just igore it. + * it's not allowed now; just ignore it. */ if (buf[j] == '*') ++j;