lenght->length, mostly in comments
authorsthen <sthen@openbsd.org>
Mon, 27 Nov 2017 16:53:04 +0000 (16:53 +0000)
committersthen <sthen@openbsd.org>
Mon, 27 Nov 2017 16:53:04 +0000 (16:53 +0000)
regress/sys/kern/sosplice/tcp/args-reverse-long.pl
regress/usr.sbin/syslogd/funcs.pl
sys/dev/pci/if_oce.c
sys/net/fq_codel.c
usr.sbin/acme-client/parse.h
usr.sbin/acme-client/util.c
usr.sbin/bgpctl/bgpctl.c

index 488e37f..b3febfc 100644 (file)
@@ -1,4 +1,4 @@
-# test longer data lenght when reverse sending
+# test longer data length when reverse sending
 
 use strict;
 use warnings;
index 0ab59a2..8bc47ec 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: funcs.pl,v 1.33 2017/09/13 00:35:53 bluhm Exp $
+#      $OpenBSD: funcs.pl,v 1.34 2017/11/27 16:53:04 sthen Exp $
 
 # Copyright (c) 2010-2015 Alexander Bluhm <bluhm@openbsd.org>
 #
@@ -122,18 +122,18 @@ sub write_shutdown {
 
 sub write_lines {
        my $self = shift;
-       my ($lines, $lenght) = @_;
+       my ($lines, $length) = @_;
 
        foreach (1..$lines) {
-               write_chars($self, $lenght, " $_");
+               write_chars($self, $length, " $_");
        }
 }
 
 sub write_lengths {
        my $self = shift;
-       my ($lenghts, $tail) = ref $_[0] ? @_ : [@_];
+       my ($lengths, $tail) = ref $_[0] ? @_ : [@_];
 
-       write_chars($self, $lenghts, $tail);
+       write_chars($self, $lengths, $tail);
 }
 
 sub generate_chars {
index 2ddbe05..55da2ff 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_oce.c,v 1.99 2017/01/22 10:17:38 dlg Exp $ */
+/*     $OpenBSD: if_oce.c,v 1.100 2017/11/27 16:53:04 sthen Exp $      */
 
 /*
  * Copyright (c) 2012 Mike Belopuhov
@@ -2853,7 +2853,7 @@ oce_cmd(struct oce_softc *sc, int subsys, int opcode, int version,
                        memcpy(payload, &mbx->pld.data, length);
        } else
                printf("%s: mailbox timeout, subsys %d op %d ver %d "
-                   "%spayload lenght %d\n", sc->sc_dev.dv_xname, subsys,
+                   "%spayload length %d\n", sc->sc_dev.dv_xname, subsys,
                    opcode, version, epayload ? "ext " : "",
                    length);
        return (err);
index 6aef71e..a5077be 100644 (file)
@@ -346,7 +346,7 @@ control_law(struct codel *cd, struct codel_params *cp, int64_t rts)
  *
  * The decision whether to drop the packet or not is made based
  * on the queueing delay target of 5ms and on the current queue
- * lenght in bytes which shouldn't be less than the amount of data
+ * length in bytes which shouldn't be less than the amount of data
  * that arrives in a typical interarrival time (MTU-sized packets
  * arriving spaced by the amount of time it takes to send such a
  * packet on the bottleneck).
index fc5d1ae..e371f19 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: parse.h,v 1.8 2017/11/27 01:58:52 florian Exp $ */
+/*     $OpenBSD: parse.h,v 1.9 2017/11/27 16:53:04 sthen Exp $ */
 /*
  * Copyright (c) 2016 Sebastian Benoit <benno@openbsd.org>
  *
@@ -19,7 +19,7 @@
 
 #include <sys/queue.h>
 
-#define AUTH_MAXLEN    120     /* max lenght of an authority_c name */
+#define AUTH_MAXLEN    120     /* max length of an authority_c name */
 #define DOMAIN_MAXLEN  255     /* max len of a domain name (rfc2181) */
 
 /*
index d5f6f5d..81e51fc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: util.c,v 1.9 2017/01/24 13:32:55 jsing Exp $ */
+/*     $Id: util.c,v 1.10 2017/11/27 16:53:04 sthen Exp $ */
 /*
  * Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -113,7 +113,7 @@ readstr(int fd, enum comm comm)
 
 /*
  * Read a buffer from the sender.
- * This consists of two parts: the lenght of the buffer, and the buffer
+ * This consists of two parts: the length of the buffer, and the buffer
  * itself.
  * We allow the buffer to be binary, but NUL-terminate it anyway.
  */
index 177e00e..bec68d1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bgpctl.c,v 1.201 2017/10/16 08:39:16 job Exp $ */
+/*     $OpenBSD: bgpctl.c,v 1.202 2017/11/27 16:53:04 sthen Exp $ */
 
 /*
  * Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
@@ -562,7 +562,7 @@ show_summary_msg(struct imsg *imsg, int nodescr)
 
                a = log_as(p->conf.remote_as);
                alen = strlen(a);
-               /* max displayed lenght of the peers name is 28 */
+               /* max displayed length of the peers name is 28 */
                if (alen < 28) {
                        if (strlen(s) > 28 - alen)
                                s[28 - alen] = 0;