From owner-svn-src-head@freebsd.org Wed Dec 27 03:24:01 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE8D9E9E64D; Wed, 27 Dec 2017 03:24:01 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 466CF74D33; Wed, 27 Dec 2017 03:23:59 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBR3Nwmf058465; Wed, 27 Dec 2017 03:23:58 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBR3Nw8h058459; Wed, 27 Dec 2017 03:23:58 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201712270323.vBR3Nw8h058459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Wed, 27 Dec 2017 03:23:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r327233 - in head: . sbin/devfs tests/sys/fifo tests/sys/kern tools/regression/bpf/bpf_filter X-SVN-Group: head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: in head: . sbin/devfs tests/sys/fifo tests/sys/kern tools/regression/bpf/bpf_filter X-SVN-Commit-Revision: 327233 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Dec 2017 03:24:01 -0000 Author: eadler Date: Wed Dec 27 03:23:58 2017 New Revision: 327233 URL: https://svnweb.freebsd.org/changeset/base/327233 Log: other: Fix several typos and minor errors - duplicate words - typos - references to old versions of FreeBSD Reviewed by: imp, benno Modified: head/UPDATING head/sbin/devfs/rule.c head/tests/sys/fifo/fifo_io.c head/tests/sys/kern/ptrace_test.c head/tools/regression/bpf/bpf_filter/bpf_test.c Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Dec 27 03:23:41 2017 (r327232) +++ head/UPDATING Wed Dec 27 03:23:58 2017 (r327233) @@ -821,7 +821,7 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: 20150623: An additional fix for the issue described in the 20150614 sendmail - entry below has been been committed in revision 284717. + entry below has been committed in revision 284717. 20150616: FreeBSD's old make (fmake) has been removed from the system. It is @@ -829,7 +829,7 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 12.x IS SLOW: 20150615: The fix for the issue described in the 20150614 sendmail entry - below has been been committed in revision 284436. The work + below has been committed in revision 284436. The work around described in that entry is no longer needed unless the default setting is overridden by a confDH_PARAMETERS configuration setting of '5' or pointing to a 512 bit DH parameter file. Modified: head/sbin/devfs/rule.c ============================================================================== --- head/sbin/devfs/rule.c Wed Dec 27 03:23:41 2017 (r327232) +++ head/sbin/devfs/rule.c Wed Dec 27 03:23:58 2017 (r327233) @@ -267,7 +267,7 @@ ruleset_main(int ac, char **av) * differs from the other rulespec_in*() routines in that it also * calls ioctl() for the rules, since it is impractical (and not very * useful) to return a list (or array) of rules, just so the caller - * can call call ioctl() for each of them. + * can call ioctl() for each of them. */ static void rulespec_infp(FILE *fp, unsigned long request, devfs_rsnum rsnum) Modified: head/tests/sys/fifo/fifo_io.c ============================================================================== --- head/tests/sys/fifo/fifo_io.c Wed Dec 27 03:23:41 2017 (r327232) +++ head/tests/sys/fifo/fifo_io.c Wed Dec 27 03:23:58 2017 (r327233) @@ -1178,7 +1178,7 @@ test_events_write_read_byte(void) } /* - * Read the byte from the reader_fd, and now confirm that that fifo + * Read the byte from the reader_fd, and now confirm that the fifo * becomes unreadable. */ len = read(reader_fd, &ch, sizeof(ch)); Modified: head/tests/sys/kern/ptrace_test.c ============================================================================== --- head/tests/sys/kern/ptrace_test.c Wed Dec 27 03:23:41 2017 (r327232) +++ head/tests/sys/kern/ptrace_test.c Wed Dec 27 03:23:58 2017 (r327233) @@ -2958,7 +2958,7 @@ ATF_TC_BODY(ptrace__PT_CONTINUE_with_sigmask, tc) /* * Verify that if ptrace stops due to a signal but continues with * a different signal that the new signal is routed to a thread - * that can accept it, and that that thread is awakened by the signal + * that can accept it, and that the thread is awakened by the signal * in a timely manner. */ ATF_TC_WITHOUT_HEAD(ptrace__PT_CONTINUE_with_signal_thread_sigmask); Modified: head/tools/regression/bpf/bpf_filter/bpf_test.c ============================================================================== --- head/tools/regression/bpf/bpf_filter/bpf_test.c Wed Dec 27 03:23:41 2017 (r327232) +++ head/tools/regression/bpf/bpf_filter/bpf_test.c Wed Dec 27 03:23:58 2017 (r327233) @@ -149,7 +149,7 @@ bpf_validate(const struct bpf_insn *f, int len) if (!BPF_VALIDATE_CODE(p->code)) return (0); /* - * Check that that jumps are forward, and within + * Check that jumps are forward, and within * the code block. */ if (BPF_CLASS(p->code) == BPF_JMP) {