From 6668a736406d7c2b2dddf4684e79317967d904ab Mon Sep 17 00:00:00 2001 From: guenther Date: Fri, 28 Jan 2022 06:33:26 +0000 Subject: [PATCH] When it's the possessive of 'it', it's spelled "its", without the apostrophe. --- usr.sbin/authpf/authpf.c | 4 ++-- usr.sbin/cron/do_command.c | 6 +++--- usr.sbin/dhcpd/memory.c | 4 ++-- usr.sbin/mopd/mopd/process.c | 4 ++-- usr.sbin/rpki-client/parser.c | 4 ++-- usr.sbin/sasyncd/net.c | 4 ++-- usr.sbin/vmd/loadfile_elf.c | 4 ++-- usr.sbin/wsmoused/mouse_protocols.c | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 97cbadd3c48..67d2f723705 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.128 2019/06/28 13:32:47 deraadt Exp $ */ +/* $OpenBSD: authpf.c,v 1.129 2022/01/28 06:33:26 guenther Exp $ */ /* * Copyright (C) 1998 - 2007 Bob Beck (beck@openbsd.org). @@ -267,7 +267,7 @@ main(int argc, char *argv[]) /* re-open, and try again. The previous authpf process * we killed above should unlink the file and release - * it's lock, giving us a chance to get it now + * its lock, giving us a chance to get it now */ fclose(pidfp); pidfp = NULL; diff --git a/usr.sbin/cron/do_command.c b/usr.sbin/cron/do_command.c index 6ec98dd0c7d..603cb1bd210 100644 --- a/usr.sbin/cron/do_command.c +++ b/usr.sbin/cron/do_command.c @@ -1,4 +1,4 @@ -/* $OpenBSD: do_command.c,v 1.61 2020/04/16 17:51:56 millert Exp $ */ +/* $OpenBSD: do_command.c,v 1.62 2022/01/28 06:33:27 guenther Exp $ */ /* Copyright 1988,1990,1993,1994 by Paul Vixie * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") @@ -339,8 +339,8 @@ child_process(entry *e, user *u) close(stdin_pipe[WRITE_PIPE]); /* - * read output from the grandchild. it's stderr has been redirected to - * it's stdout, which has been redirected to our pipe. if there is any + * read output from the grandchild. Its stderr has been redirected to + * its stdout, which has been redirected to our pipe. if there is any * output, we'll be mailing it to the user whose crontab this is... * when the grandchild exits, we'll get EOF. */ diff --git a/usr.sbin/dhcpd/memory.c b/usr.sbin/dhcpd/memory.c index ffcc54defd1..23db6f91560 100644 --- a/usr.sbin/dhcpd/memory.c +++ b/usr.sbin/dhcpd/memory.c @@ -1,4 +1,4 @@ -/* $OpenBSD: memory.c,v 1.30 2020/11/10 16:42:17 krw Exp $ */ +/* $OpenBSD: memory.c,v 1.31 2022/01/28 06:33:27 guenther Exp $ */ /* * Copyright (c) 1995, 1996, 1997, 1998 The Internet Software Consortium. @@ -653,7 +653,7 @@ release_lease(struct lease *lease) /* - * Abandon the specified lease for the specified time. sets it's + * Abandon the specified lease for the specified time. sets its * particulars to zero, the end time appropriately and re-hash it as * appropriate. abandons permanently if abtime is 0 */ diff --git a/usr.sbin/mopd/mopd/process.c b/usr.sbin/mopd/mopd/process.c index a129110d37b..1169d1d2f73 100644 --- a/usr.sbin/mopd/mopd/process.c +++ b/usr.sbin/mopd/mopd/process.c @@ -1,4 +1,4 @@ -/* $OpenBSD: process.c,v 1.23 2021/10/24 21:24:19 deraadt Exp $ */ +/* $OpenBSD: process.c,v 1.24 2022/01/28 06:33:27 guenther Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -163,7 +163,7 @@ mopStartLoad(u_char *dst, u_char *src, struct dllist *dl_rpr, int trans) slot = -1; - /* Look if we have a non terminated load, if so, use it's slot */ + /* Look if we have a non terminated load, if so, use its slot */ for (i = 0; i < MAXDL && slot == -1; i++) if (dllist[i].status != DL_STATUS_FREE) if (mopCmpEAddr(dllist[i].eaddr, dst) == 0) diff --git a/usr.sbin/rpki-client/parser.c b/usr.sbin/rpki-client/parser.c index fe3ffa275cf..e5836506eaa 100644 --- a/usr.sbin/rpki-client/parser.c +++ b/usr.sbin/rpki-client/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.56 2022/01/26 14:42:39 claudio Exp $ */ +/* $OpenBSD: parser.c,v 1.57 2022/01/28 06:33:27 guenther Exp $ */ /* * Copyright (c) 2019 Claudio Jeker * Copyright (c) 2019 Kristaps Dzonsons @@ -434,7 +434,7 @@ proc_parser_cert(char *file, const unsigned char *der, size_t len) /* * Root certificates come from TALs (has a pkey and is self-signed). - * Parse the certificate, ensure that it's public key matches the + * Parse the certificate, ensure that its public key matches the * known public key from the TAL, and then validate the RPKI * content. * diff --git a/usr.sbin/sasyncd/net.c b/usr.sbin/sasyncd/net.c index d4d2340b692..2d49190c587 100644 --- a/usr.sbin/sasyncd/net.c +++ b/usr.sbin/sasyncd/net.c @@ -1,4 +1,4 @@ -/* $OpenBSD: net.c,v 1.23 2015/12/12 20:04:23 mmcc Exp $ */ +/* $OpenBSD: net.c,v 1.24 2022/01/28 06:33:27 guenther Exp $ */ /* * Copyright (c) 2005 HÃ¥kan Olsson. All rights reserved. @@ -179,7 +179,7 @@ net_setup_listeners(void) /* * If net_set_sa() failed, cfgstate.listen_on is probably an - * interface name, so we should listen on all it's addresses. + * interface name, so we should listen on all its addresses. */ if (getifaddrs(&ifap) != 0) { diff --git a/usr.sbin/vmd/loadfile_elf.c b/usr.sbin/vmd/loadfile_elf.c index 4e75f6291ea..b367721e32b 100644 --- a/usr.sbin/vmd/loadfile_elf.c +++ b/usr.sbin/vmd/loadfile_elf.c @@ -1,5 +1,5 @@ /* $NetBSD: loadfile.c,v 1.10 2000/12/03 02:53:04 tsutsui Exp $ */ -/* $OpenBSD: loadfile_elf.c,v 1.41 2022/01/04 15:18:44 claudio Exp $ */ +/* $OpenBSD: loadfile_elf.c,v 1.42 2022/01/28 06:33:27 guenther Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -248,7 +248,7 @@ push_pt_64(void) /* * loadfile_elf * - * Loads an ELF kernel to it's defined load address in the guest VM. + * Loads an ELF kernel to its defined load address in the guest VM. * The kernel is loaded to its defined start point as set in the ELF header. * * Parameters: diff --git a/usr.sbin/wsmoused/mouse_protocols.c b/usr.sbin/wsmoused/mouse_protocols.c index 81ab3f713be..7ac79f8d77a 100644 --- a/usr.sbin/wsmoused/mouse_protocols.c +++ b/usr.sbin/wsmoused/mouse_protocols.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mouse_protocols.c,v 1.17 2019/06/28 13:32:51 deraadt Exp $ */ +/* $OpenBSD: mouse_protocols.c,v 1.18 2022/01/28 06:33:27 guenther Exp $ */ /* * Copyright (c) 2001 Jean-Baptiste Marchand, Julien Montagne and Jerome Verdon @@ -658,7 +658,7 @@ mouse_init(void) * Initialize Hitachi PUMA Plus - Model 1212E to desired settings. * The tablet must be configured to be in MM mode, NO parity, * Binary Format. xf86Info.sampleRate controls the sensativity - * of the tablet. We only use this tablet for it's 4-button puck + * of the tablet. We only use this tablet for its 4-button puck * so we don't run in "Absolute Mode" */ write(mouse.mfd, "z8", 2); /* Set Parity = "NONE" */ -- 2.20.1