spelling fixes; from paul tagliamonte
authorjmc <jmc@openbsd.org>
Tue, 27 Dec 2022 07:44:56 +0000 (07:44 +0000)
committerjmc <jmc@openbsd.org>
Tue, 27 Dec 2022 07:44:56 +0000 (07:44 +0000)
include/arpa/nameser.h
include/rpc/clnt.h
include/rpc/xdr.h
include/rpcsvc/yp_prot.h
include/siphash.h
include/tib.h

index ead11b7..60ca73f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: nameser.h,v 1.14 2018/03/16 12:31:09 mpi Exp $        */
+/*     $OpenBSD: nameser.h,v 1.15 2022/12/27 07:44:56 jmc Exp $        */
 
 /*
  * ++Copyright++ 1983, 1989, 1993
@@ -285,7 +285,7 @@ typedef struct {
                        /* fields in third byte */
        unsigned        qr: 1;          /* response flag */
        unsigned        opcode: 4;      /* purpose of message */
-       unsigned        aa: 1;          /* authoritive answer */
+       unsigned        aa: 1;          /* authoritative answer */
        unsigned        tc: 1;          /* truncated message */
        unsigned        rd: 1;          /* recursion desired */
                        /* fields in fourth byte */
@@ -299,7 +299,7 @@ typedef struct {
                        /* fields in third byte */
        unsigned        rd :1;          /* recursion desired */
        unsigned        tc :1;          /* truncated message */
-       unsigned        aa :1;          /* authoritive answer */
+       unsigned        aa :1;          /* authoritative answer */
        unsigned        opcode :4;      /* purpose of message */
        unsigned        qr :1;          /* response flag */
                        /* fields in fourth byte */
index f7b3e54..86e2246 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: clnt.h,v 1.13 2022/07/15 17:33:28 deraadt Exp $       */
+/*     $OpenBSD: clnt.h,v 1.14 2022/12/27 07:44:56 jmc Exp $   */
 /*     $NetBSD: clnt.h,v 1.6 1995/04/29 05:27:58 cgd Exp $     */
 
 /*
@@ -96,8 +96,8 @@ struct rpc_err {
                int RE_errno;           /* related system error */
                enum auth_stat RE_why;  /* why the auth error occurred */
                struct {
-                       u_int32_t low;  /* lowest verion supported */
-                       u_int32_t high; /* highest verion supported */
+                       u_int32_t low;  /* lowest version supported */
+                       u_int32_t high; /* highest version supported */
                } RE_vers;
                struct {                /* maybe meaningful if RPC_FAILED */
                        int32_t s1;
@@ -226,7 +226,7 @@ typedef struct __rpc_client {
 
 
 /*
- * RPCTEST is a test program which is accessable on every rpc
+ * RPCTEST is a test program which is accessible on every rpc
  * transport/port.  It is used for testing, performance evaluation,
  * and network administration.
  */
index 126ecec..baff982 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: xdr.h,v 1.13 2022/02/14 03:38:59 guenther Exp $       */
+/*     $OpenBSD: xdr.h,v 1.14 2022/12/27 07:44:56 jmc Exp $    */
 /*     $NetBSD: xdr.h,v 1.7 1995/04/29 05:28:06 cgd Exp $      */
 
 /*
@@ -94,8 +94,8 @@ enum xdr_op {
 /*
  * The XDR handle.
  * Contains operation which is being applied to the stream,
- * an operations vector for the paticular implementation (e.g. see xdr_mem.c),
- * and two private fields for the use of the particular impelementation.
+ * an operations vector for the particular implementation (e.g. see xdr_mem.c),
+ * and two private fields for the use of the particular implementation.
  */
 typedef struct __rpc_xdr {
        enum xdr_op     x_op;           /* operation; fast additional param */
index a8b1c79..535953d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: yp_prot.h,v 1.11 2022/01/28 04:59:15 guenther Exp $   */
+/*     $OpenBSD: yp_prot.h,v 1.12 2022/12/27 07:44:56 jmc Exp $        */
 /*     $NetBSD: yp_prot.h,v 1.6 1995/07/14 21:10:58 christos Exp $     */
 
 /*
@@ -277,7 +277,7 @@ struct yppushresp_xfr {
 #define YPPUSH_AGE     ((unsigned long)2)      /* Master's version not newer */
 #define YPPUSH_NOMAP   ((unsigned long)-1)     /* Can't find server for map */
 #define YPPUSH_NODOM   ((unsigned long)-2)     /* Domain not supported */
-#define YPPUSH_RSRC    ((unsigned long)-3)     /* Local resouce alloc failure */
+#define YPPUSH_RSRC    ((unsigned long)-3)     /* Local resource alloc failure */
 #define YPPUSH_RPC     ((unsigned long)-4)     /* RPC failure talking to server */
 #define YPPUSH_MADDR   ((unsigned long)-5)     /* Can't get master address */
 #define YPPUSH_YPERR   ((unsigned long)-6)     /* YP server/map db error */
index 7a5990c..471c965 100644 (file)
@@ -26,7 +26,7 @@
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
  *
- * $OpenBSD: siphash.h,v 1.3 2015/02/20 11:51:03 tedu Exp $
+ * $OpenBSD: siphash.h,v 1.4 2022/12/27 07:44:56 jmc Exp $
  */
 
 /*
@@ -34,7 +34,7 @@
  * optimized for speed on short messages returning a 64bit hash/digest value.
  *
  * The number of rounds is defined during the initialization:
- *  SipHash24_Init() for the fast and resonable strong version
+ *  SipHash24_Init() for the fast and reasonable strong version
  *  SipHash48_Init() for the strong version (half as fast)
  *
  * struct SIPHASH_CTX ctx;
index d901b54..97dc08c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: tib.h,v 1.8 2020/07/14 16:48:13 kettenis Exp $        */
+/*     $OpenBSD: tib.h,v 1.9 2022/12/27 07:44:56 jmc Exp $     */
 /*
  * Copyright (c) 2011,2014 Philip Guenther <guenther@openbsd.org>
  *
@@ -54,7 +54,7 @@
  *             Short-hand for TCB_TO_TIB(TCB_GET())
  *
  *     TIB_EXTRA_ALIGN
- *             On TLS varaint 2 archs, what alignment is sufficient
+ *             On TLS variant 2 archs, what alignment is sufficient
  *             for the extra space that will be used for struct pthread?
  *
  * The following functions are provided by either ld.so (dynamic) or