When it's the possessive of 'it', it's spelled "its", without the
authorguenther <guenther@openbsd.org>
Fri, 28 Jan 2022 06:18:41 +0000 (06:18 +0000)
committerguenther <guenther@openbsd.org>
Fri, 28 Jan 2022 06:18:41 +0000 (06:18 +0000)
apostrophe.

usr.bin/mail/def.h
usr.bin/mg/dir.c
usr.bin/mg/help.c
usr.bin/mg/interpreter.c
usr.bin/mg/tags.c
usr.bin/rdist/docmd.c
usr.bin/rdistd/server.c
usr.bin/showmount/showmount.c
usr.bin/ssh/monitor.c

index 3a26cc7..5df43a6 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: def.h,v 1.16 2015/10/13 08:49:51 guenther Exp $       */
+/*     $OpenBSD: def.h,v 1.17 2022/01/28 06:18:41 guenther Exp $       */
 /*     $NetBSD: def.h,v 1.9 1996/12/28 07:11:00 tls Exp $      */
 
 /*
@@ -30,7 +30,7 @@
  * SUCH DAMAGE.
  *
  *     @(#)def.h       8.4 (Berkeley) 4/20/95
- *     $OpenBSD: def.h,v 1.16 2015/10/13 08:49:51 guenther Exp $
+ *     $OpenBSD: def.h,v 1.17 2022/01/28 06:18:41 guenther Exp $
  */
 
 /*
@@ -199,7 +199,7 @@ struct name {
 struct var {
        struct  var *v_link;            /* Forward link to next variable */
        char    *v_name;                /* The variable's name */
-       char    *v_value;               /* And it's current value */
+       char    *v_value;               /* And its current value */
 };
 
 struct group {
index 0674f63..ee1981b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dir.c,v 1.31 2019/06/28 13:35:02 deraadt Exp $        */
+/*     $OpenBSD: dir.c,v 1.32 2022/01/28 06:18:41 guenther Exp $       */
 
 /* This file is in the public domain. */
 
@@ -86,7 +86,7 @@ getcwdir(char *buf, size_t len)
        return (TRUE);
 }
 
-/* Create the directory and it's parents. */
+/* Create the directory and its parents. */
 /* ARGSUSED */
 int
 makedir(int f, int n)
index cd983a3..37d8a58 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: help.c,v 1.35 2015/03/19 21:22:15 bcallah Exp $       */
+/*     $OpenBSD: help.c,v 1.36 2022/01/28 06:18:41 guenther Exp $      */
 
 /* This file is in the public domain. */
 
@@ -97,7 +97,7 @@ found:
 /*
  * This function creates a table, listing all of the command
  * keys and their current bindings, and stores the table in the
- * *help* pop-up buffer.  This lets Mg produce it's own wall chart.
+ * *help* pop-up buffer.  This lets Mg produce its own wall chart.
  */
 /* ARGSUSED */
 int
index 9296939..47d839c 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: interpreter.c,v 1.33 2022/01/20 14:07:34 naddy Exp $ */
+/*      $OpenBSD: interpreter.c,v 1.34 2022/01/28 06:18:41 guenther Exp $      */
 /*
  * This file is in the public domain.
  *
@@ -8,7 +8,7 @@
 /*
  * This file attempts to add some 'scripting' functionality into mg.
  *
- * The initial goal is to give mg the ability to use it's existing functions
+ * The initial goal is to give mg the ability to use its existing functions
  * and structures in a linked-up way. Hopefully resulting in user definable
  * functions. The syntax is 'scheme' like but currently it is not a scheme
  * interpreter.
index 7340ced..a9fd4c7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tags.c,v 1.16 2017/08/06 04:39:45 bcallah Exp $       */
+/*     $OpenBSD: tags.c,v 1.17 2022/01/28 06:18:41 guenther Exp $      */
 
 /*
  * This file is in the public domain.
@@ -453,7 +453,7 @@ curtoken(int f, int n, char *token)
        
        /* Underscore character is to be treated as "inword" while
         * processing tokens unlike mg's default word traversal. Save
-        * and restore it's cinfo value so that tag matching works for
+        * and restore its cinfo value so that tag matching works for
         * identifier with underscore.
         */
        c = cinfo['_'];
index df24add..5d0279b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: docmd.c,v 1.34 2019/06/28 13:35:03 deraadt Exp $      */
+/*     $OpenBSD: docmd.c,v 1.35 2022/01/28 06:18:41 guenther Exp $     */
 
 /*
  * Copyright (c) 1983 Regents of the University of California.
@@ -344,7 +344,7 @@ makeconn(char *rhost)
 
        /*
         * For future compatibility we check to see if the server
-        * sent it's version number to us.  If it did, we use it,
+        * sent its version number to us.  If it did, we use it,
         * otherwise, we send our version number to the server and let
         * it decide if it can handle our protocol version.
         */
@@ -357,7 +357,7 @@ makeconn(char *rhost)
                        return(0);
        } else {
                /*
-                * The server sent it's version number to us
+                * The server sent its version number to us
                 */
                int proto_version = atoi(&respbuff[1]);
                if (proto_version != VERSION) {
index 44f0ae3..548be16 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: server.c,v 1.47 2019/06/28 13:35:03 deraadt Exp $     */
+/*     $OpenBSD: server.c,v 1.48 2022/01/28 06:18:42 guenther Exp $    */
 
 /*
  * Copyright (c) 1983 Regents of the University of California.
@@ -1674,7 +1674,7 @@ server(void)
        }
 
        /* 
-        * Let client know we want it to send it's version number
+        * Let client know we want it to send its version number
         */
        (void) sendcmd(S_VERSION, NULL);
 
index 0d0483e..c264f68 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: showmount.c,v 1.23 2018/04/26 12:42:51 guenther Exp $ */
+/*     $OpenBSD: showmount.c,v 1.24 2022/01/28 06:18:42 guenther Exp $ */
 /*     $NetBSD: showmount.c,v 1.7 1996/05/01 18:14:10 cgd Exp $        */
 
 /*
@@ -83,8 +83,8 @@ int   xdr_mntdump(XDR *, struct mountlist **);
 int    xdr_exports(XDR *, struct exportslist **);
 
 /*
- * This command queries the NFS mount daemon for it's mount list and/or
- * it's exports list and prints them out.
+ * This command queries the NFS mount daemon for its mount list and/or
+ * its exports list and prints them out.
  * See "NFS: Network File System Protocol Specification, RFC1094, Appendix A"
  * and the "Network File System Protocol XXX.."
  * for detailed information on the protocol.
index 7893a88..3e4abfb 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor.c,v 1.230 2022/01/06 22:03:59 djm Exp $ */
+/* $OpenBSD: monitor.c,v 1.231 2022/01/28 06:18:42 guenther Exp $ */
 /*
  * Copyright 2002 Niels Provos <provos@citi.umich.edu>
  * Copyright 2002 Markus Friedl <markus@openbsd.org>
@@ -716,7 +716,7 @@ mm_answer_pwnamallow(struct ssh *ssh, int sock, struct sshbuf *m)
        if (auth2_setup_methods_lists(authctxt) != 0) {
                /*
                 * The monitor will continue long enough to let the child
-                * run to it's packet_disconnect(), but it must not allow any
+                * run to its packet_disconnect(), but it must not allow any
                 * authentication to succeed.
                 */
                debug_f("no valid authentication method lists");