CVS commit: src/sys/arch
Module Name:src Committed By: rin Date: Mon Nov 6 02:57:19 UTC 2017 Modified Files: src/sys/arch/amd64/conf: GENERIC XEN3_DOM0 XEN3_DOMU src/sys/arch/i386/conf: GENERIC GENERIC_PS2TINY GENERIC_TINY INSTALL_FLOPPY INSTALL_TINY NET4501 XEN3_DOM0 XEN3_DOMU src/sys/arch/riscv/conf: GENERIC Log Message: Revive commented out DISKLABEL_EI option to kernel configuration files that contain FFS_EI option. To generate a diff of this commit: cvs rdiff -u -r1.467 -r1.468 src/sys/arch/amd64/conf/GENERIC cvs rdiff -u -r1.140 -r1.141 src/sys/arch/amd64/conf/XEN3_DOM0 cvs rdiff -u -r1.79 -r1.80 src/sys/arch/amd64/conf/XEN3_DOMU cvs rdiff -u -r1.1169 -r1.1170 src/sys/arch/i386/conf/GENERIC cvs rdiff -u -r1.78 -r1.79 src/sys/arch/i386/conf/GENERIC_PS2TINY cvs rdiff -u -r1.156 -r1.157 src/sys/arch/i386/conf/GENERIC_TINY cvs rdiff -u -r1.42 -r1.43 src/sys/arch/i386/conf/INSTALL_FLOPPY cvs rdiff -u -r1.155 -r1.156 src/sys/arch/i386/conf/INSTALL_TINY cvs rdiff -u -r1.99 -r1.100 src/sys/arch/i386/conf/NET4501 cvs rdiff -u -r1.122 -r1.123 src/sys/arch/i386/conf/XEN3_DOM0 cvs rdiff -u -r1.86 -r1.87 src/sys/arch/i386/conf/XEN3_DOMU cvs rdiff -u -r1.7 -r1.8 src/sys/arch/riscv/conf/GENERIC Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Mon Nov 6 03:02:22 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: conv.c Log Message: Fix buffer overrun caused by lines longer than CONV_BUFFER_SIZE. Take care of errno == E2BIG case of iconv(3) appropriately. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/common/conv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Mon Nov 6 03:03:54 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: msg.c Log Message: Fix bogus file location in percentage. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/msg.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/cl
Module Name:src Committed By: rin Date: Mon Nov 6 03:08:41 UTC 2017 Modified Files: src/external/bsd/nvi/dist/cl: cl_bsd.c Log Message: Remove a hack which declares tigetstr(9) in cl_extern.h. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/cl/cl_bsd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/cl
Module Name:src Committed By: rin Date: Mon Nov 6 03:10:26 UTC 2017 Modified Files: src/external/bsd/nvi/dist/cl: cl_main.c Log Message: No need to include ip_extern.h here. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/nvi/dist/cl/cl_main.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Mon Nov 6 03:17:37 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: options.c Log Message: Fix corruption in numbering of options without GTAGS compile-time option. Now nvi works without GTAGS. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/options.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Mon Nov 6 03:21:13 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: options.c Log Message: Entries of abbrev[] should be sorted for bsearch(3) to work. Fix the problem that option abbreviation "fe" is neglected. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/common/options.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi
Module Name:src Committed By: rin Date: Mon Nov 6 03:27:34 UTC 2017 Modified Files: src/external/bsd/nvi/dist/cl: cl_main.c src/external/bsd/nvi/dist/ex: ex_script.c src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: Introduce HAVE_XXX macros to where they should be. No binary changes, but possibly improve portability for, e.g., sync with pkgsrc version in the near future. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/nvi/dist/cl/cl_main.c cvs rdiff -u -r1.7 -r1.8 src/external/bsd/nvi/dist/ex/ex_script.c cvs rdiff -u -r1.7 -r1.8 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Mon Nov 6 03:37:52 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: No need to compile in ip_*.c and ipc_*.c to nvi, although they are necessary for generation of header files. Reduce 5% of binary size on amd64. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist
Module Name:src Committed By: rin Date: Fri Nov 10 14:35:25 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: vi_db1.c src/external/bsd/nvi/dist/ex: ex.c Log Message: PR bin/52716 fix buffer overrun found by libasan To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/external/bsd/nvi/dist/common/vi_db1.c cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/ex/ex.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/vi
Module Name:src Committed By: rin Date: Fri Nov 10 14:44:13 UTC 2017 Modified Files: src/external/bsd/nvi/dist/vi: vs_line.c vs_refresh.c vs_relative.c Log Message: - Fix cursor position when a multiwidth char does not fit within a line. - Put cursor on the leftmost column of a multiwidth char, instead of the rightmost one. Otherwise, some terminal emulators do not focus on the entire of the char. Logic taken from nvi-m17n by itojun. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/vi/vs_line.c \ src/external/bsd/nvi/dist/vi/vs_relative.c cvs rdiff -u -r1.6 -r1.7 src/external/bsd/nvi/dist/vi/vs_refresh.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Fri Nov 10 14:53:00 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex_join.c Log Message: Change the behavior of join command in accordance with nvi-m17n, as proposed on tech-userlevel@; when the last and first chars in joined lines are multi-width, do not insert a white space. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/ex/ex_join.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Fri Nov 10 18:08:11 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: conv.c Log Message: Restore the initial state at the end of line. This matters for stateful encodings like iso-2022-jp. Fix taken from yamt via nvi2. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/nvi/dist/common/conv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/games/factor
Module Name:src Committed By: rin Date: Sat Nov 11 23:48:44 UTC 2017 Modified Files: src/games/factor: factor.6 factor.c Log Message: Add -h option to factor(6): duplicate factors are printed in "human-readable" form of x^n. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/games/factor/factor.6 cvs rdiff -u -r1.27 -r1.28 src/games/factor/factor.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Sun Nov 12 15:22:09 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex_cscope.c Log Message: Add missing encoding conversion before printing it. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/nvi/dist/ex/ex_cscope.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Sun Nov 12 15:23:51 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: put.c Log Message: Fix argument type of put() in common_extern.h To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/common/put.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Sun Nov 12 15:26:34 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: util.c Log Message: No need to cast endp in both cases of USE_WIDECHAR == "yes" nor "no". Note that RCHAR_T is intended to use for bundled regex, not for nvi itself. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/util.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Sun Nov 12 15:27:53 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex_print.c Log Message: db_recno_t aka recno_t is uint32_t To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/ex/ex_print.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/cl
Module Name:src Committed By: rin Date: Sun Nov 12 15:33:03 UTC 2017 Modified Files: src/external/bsd/nvi/dist/cl: cl_funcs.c Log Message: _POSIX_VDISABLE exceeds CHAR_MAX. We thus need to cast it to CHAR_T for the case where USE_WIDECHAR != "yes", i.e., CHAR_T is char. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/cl/cl_funcs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 12 16:10:59 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: regexec.c Log Message: Make REG_STARTEND for tre_regcomp() working actually: - correct string length - shift pmatch after pattern matching - check validity of arguments Do the same thing for tre_regwcomp() To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tre/dist/lib/regexec.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Mon Nov 13 00:53:05 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: regexec.c Log Message: Apply the previous fix to tre_regwexec(). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/tre/dist/lib/regexec.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Mon Nov 13 01:34:59 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: multibyte.h Log Message: Remove duplicate definition for ISUPPER. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/multibyte.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/cl
Module Name:src Committed By: rin Date: Mon Nov 13 01:37:48 UTC 2017 Modified Files: src/external/bsd/nvi/dist/cl: cl_funcs.c Log Message: Use ISBLANK macro instead of isblank(3). To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/nvi/dist/cl/cl_funcs.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist
Module Name:src Committed By: rin Date: Mon Nov 13 01:40:37 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: cut.h src/external/bsd/nvi/dist/ex: ex.c Log Message: Make sure to cast arguments of ISFOO and TOFOO macros into UCHAR_T. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/cut.h cvs rdiff -u -r1.5 -r1.6 src/external/bsd/nvi/dist/ex/ex.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi
Module Name:src Committed By: rin Date: Mon Nov 13 01:51:47 UTC 2017 Modified Files: src/external/bsd/nvi/dist/cl: cl_funcs.c src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: Use mvwchgat(3), which is not a macro in general (and in our case). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/nvi/dist/cl/cl_funcs.c cvs rdiff -u -r1.9 -r1.10 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Mon Nov 13 02:33:13 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: - Add -Wno-unused and -Wno-unsequenced for gcc and clang, respectively. This is because encoding conversion macros yield such like: #define FILE2INT5(sp,buf,n,nlen,w,wlen) (w = n, wlen = nlen, 0) - Silence gcc warnings on nonliteral arguments for snprintf(3) in v_increment.c, that are overlooked for swprintf(3) in the case of USE_WIDECHAR == "yes". To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Mon Nov 13 04:09:42 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: Sorry, remove illegal indents. Real fix for build with USE_WIDECHAR != "yes". To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Mon Nov 13 04:21:55 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: conv.c Log Message: Protect iconv stuffs by USE_WIDECHAR in addition to USE_ICONV. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/nvi/dist/common/conv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/vi
Module Name:src Committed By: rin Date: Tue Nov 14 12:20:56 UTC 2017 Modified Files: src/external/bsd/nvi/dist/vi: vs_refresh.c Log Message: Fix cursor movement for the case of USE_WIDECHAR != "yes", where the argument of INTISWIDE() is not evaluated. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/nvi/dist/vi/vs_refresh.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre
Module Name:src Committed By: rin Date: Fri Nov 17 14:37:37 UTC 2017 Modified Files: src/external/bsd/tre: Makefile.inc src/external/bsd/tre/dist: configure.ac src/external/bsd/tre/include: config.h Log Message: Specify TRE_REGEX_T_FIELD in CPPFLAGS when we want ABI compatible with libc, in a similar manner to TRE_SYSTEM_REGEX_H_PATH and TRE_USE_SYSTEM_REGEX_H. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tre/Makefile.inc cvs rdiff -u -r1.1.1.1 -r1.2 src/external/bsd/tre/dist/configure.ac cvs rdiff -u -r1.1 -r1.2 src/external/bsd/tre/include/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre
Module Name:src Committed By: rin Date: Fri Nov 17 16:08:20 UTC 2017 Added Files: src/external/bsd/tre: tre2netbsd Log Message: Add tre2netbsd script based on nvi2netbsd. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/external/bsd/tre/tre2netbsd Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: src/external/bsd/tre/dist
Module Name:src Committed By: rin Date: Fri Nov 17 16:11:13 UTC 2017 Update of /cvsroot/src/external/bsd/tre/dist In directory ivanova.netbsd.org:/tmp/cvs-serv15967 Log Message: Import tre from https://github.com/laurikari/tre as of 10171117: - tre_reg*b() functions are added, that take bytes literally. - minor bug fixes Status: Vendor Tag: LAURIKARI Release Tags: tre-20171117 U src/external/bsd/tre/dist/AUTHORS U src/external/bsd/tre/dist/LICENSE U src/external/bsd/tre/dist/Makefile.am U src/external/bsd/tre/dist/NEWS N src/external/bsd/tre/dist/README.md U src/external/bsd/tre/dist/THANKS U src/external/bsd/tre/dist/TODO C src/external/bsd/tre/dist/configure.ac U src/external/bsd/tre/dist/tre.pc.in U src/external/bsd/tre/dist/tre.spec.in U src/external/bsd/tre/dist/doc/Makefile.am U src/external/bsd/tre/dist/doc/agrep.1.in U src/external/bsd/tre/dist/doc/default.css U src/external/bsd/tre/dist/doc/tre-api.html U src/external/bsd/tre/dist/doc/tre-syntax.html N src/external/bsd/tre/dist/include/tre/tre-config.h N src/external/bsd/tre/dist/include/tre/tre.h U src/external/bsd/tre/dist/lib/Makefile.am U src/external/bsd/tre/dist/lib/README C src/external/bsd/tre/dist/lib/regcomp.c U src/external/bsd/tre/dist/lib/regerror.c U src/external/bsd/tre/dist/lib/regex.h C src/external/bsd/tre/dist/lib/regexec.c U src/external/bsd/tre/dist/lib/tre-ast.c U src/external/bsd/tre/dist/lib/tre-ast.h C src/external/bsd/tre/dist/lib/tre-compile.c U src/external/bsd/tre/dist/lib/tre-compile.h U src/external/bsd/tre/dist/lib/tre-config.h.in N src/external/bsd/tre/dist/lib/tre-filter.c N src/external/bsd/tre/dist/lib/tre-filter.h C src/external/bsd/tre/dist/lib/tre-internal.h C src/external/bsd/tre/dist/lib/tre-match-approx.c C src/external/bsd/tre/dist/lib/tre-match-backtrack.c C src/external/bsd/tre/dist/lib/tre-match-parallel.c C src/external/bsd/tre/dist/lib/tre-match-utils.h U src/external/bsd/tre/dist/lib/tre-mem.c U src/external/bsd/tre/dist/lib/tre-mem.h C src/external/bsd/tre/dist/lib/tre-parse.c C src/external/bsd/tre/dist/lib/tre-parse.h U src/external/bsd/tre/dist/lib/tre-stack.c C src/external/bsd/tre/dist/lib/tre-stack.h C src/external/bsd/tre/dist/lib/tre.h U src/external/bsd/tre/dist/lib/xmalloc.c U src/external/bsd/tre/dist/lib/xmalloc.h U src/external/bsd/tre/dist/m4/Makefile.am U src/external/bsd/tre/dist/m4/ac_libtool_tags.m4 U src/external/bsd/tre/dist/m4/ax_check_funcs_comp.m4 U src/external/bsd/tre/dist/m4/ax_check_sign.m4 U src/external/bsd/tre/dist/m4/ax_decl_wchar_max.m4 U src/external/bsd/tre/dist/m4/vl_prog_cc_warnings.m4 U src/external/bsd/tre/dist/po/LINGUAS U src/external/bsd/tre/dist/po/Makevars U src/external/bsd/tre/dist/po/POTFILES.in U src/external/bsd/tre/dist/po/fi.po U src/external/bsd/tre/dist/po/sv.po U src/external/bsd/tre/dist/python/example.py U src/external/bsd/tre/dist/python/setup.py N src/external/bsd/tre/dist/python/setup.py.in U src/external/bsd/tre/dist/python/tre-python.c U src/external/bsd/tre/dist/src/Makefile.am U src/external/bsd/tre/dist/src/agrep.c U src/external/bsd/tre/dist/tests/Makefile.am U src/external/bsd/tre/dist/tests/bench.c N src/external/bsd/tre/dist/tests/build-on-hosts.sh N src/external/bsd/tre/dist/tests/build-run.sh U src/external/bsd/tre/dist/tests/build-tests.sh U src/external/bsd/tre/dist/tests/randtest.c U src/external/bsd/tre/dist/tests/retest.c U src/external/bsd/tre/dist/tests/test-str-source.c U src/external/bsd/tre/dist/tests/agrep/Makefile.am U src/external/bsd/tre/dist/tests/agrep/basic.args U src/external/bsd/tre/dist/tests/agrep/basic.input U src/external/bsd/tre/dist/tests/agrep/basic.ok U src/external/bsd/tre/dist/tests/agrep/delimiters.args U src/external/bsd/tre/dist/tests/agrep/delimiters.input U src/external/bsd/tre/dist/tests/agrep/delimiters.ok U src/external/bsd/tre/dist/tests/agrep/exitstatus.args U src/external/bsd/tre/dist/tests/agrep/exitstatus.input U src/external/bsd/tre/dist/tests/agrep/exitstatus.ok U src/external/bsd/tre/dist/tests/agrep/records.args U src/external/bsd/tre/dist/tests/agrep/records.input U src/external/bsd/tre/dist/tests/agrep/records.ok U src/external/bsd/tre/dist/tests/agrep/run-tests.sh N src/external/bsd/tre/dist/tests/build-hosts/ahma N src/external/bsd/tre/dist/tests/build-hosts/earthquake N src/external/bsd/tre/dist/tests/build-hosts/hemuli N src/external/bsd/tre/dist/tests/build-hosts/jolly U src/external/bsd/tre/dist/utils/Makefile.am U src/external/bsd/tre/dist/utils/autogen.sh N src/external/bsd/tre/dist/utils/build-release.sh U src/external/bsd/tre/dist/utils/build-rpm.sh N src/external/bsd/tre/dist/utils/build-sources.sh N src/external/bsd/tre/dist/utils/replace-vars.sh N src/external/bsd/tre/dist/vcbuild/tre.vcxproj N src/external/bsd/tre/dist/vcbuild/tre.vcxproj.filters U src/external/bsd/tre/dist/win32/config.h N src/external/bsd/tre/dist/win32/retest.vcproj U src/external/bsd/tre/dist/win32/tre-config.h N src/external/bsd/tre/dist/win32/tre-config.
CVS commit: src/external/bsd/tre/dist
Module Name:src Committed By: rin Date: Fri Nov 17 16:14:31 UTC 2017 Modified Files: src/external/bsd/tre/dist: configure.ac src/external/bsd/tre/dist/lib: regcomp.c regexec.c tre-compile.c tre-internal.h tre-match-approx.c tre-match-backtrack.c tre-match-parallel.c tre-match-utils.h tre-parse.c tre-parse.h tre-stack.h tre.h Removed Files: src/external/bsd/tre/dist: ABOUT-NLS ChangeLog INSTALL Makefile.in README aclocal.m4 config.h.in configure Log Message: Merge tre as of 20171117. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/ABOUT-NLS \ src/external/bsd/tre/dist/ChangeLog src/external/bsd/tre/dist/INSTALL \ src/external/bsd/tre/dist/Makefile.in src/external/bsd/tre/dist/README \ src/external/bsd/tre/dist/aclocal.m4 \ src/external/bsd/tre/dist/config.h.in src/external/bsd/tre/dist/configure cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tre/dist/configure.ac cvs rdiff -u -r1.3 -r1.4 src/external/bsd/tre/dist/lib/regcomp.c \ src/external/bsd/tre/dist/lib/tre-parse.c cvs rdiff -u -r1.7 -r1.8 src/external/bsd/tre/dist/lib/regexec.c cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tre/dist/lib/tre-compile.c \ src/external/bsd/tre/dist/lib/tre-internal.h \ src/external/bsd/tre/dist/lib/tre-match-approx.c \ src/external/bsd/tre/dist/lib/tre-match-parallel.c \ src/external/bsd/tre/dist/lib/tre-match-utils.h \ src/external/bsd/tre/dist/lib/tre-parse.h \ src/external/bsd/tre/dist/lib/tre-stack.h cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tre/dist/lib/tre-match-backtrack.c \ src/external/bsd/tre/dist/lib/tre.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Fri Nov 17 16:16:19 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: regcomp.c regexec.c tre-compile.c Log Message: Disable tre_reg*b() when we don't have REG_USEBYTES. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tre/dist/lib/regcomp.c cvs rdiff -u -r1.8 -r1.9 src/external/bsd/tre/dist/lib/regexec.c cvs rdiff -u -r1.3 -r1.4 src/external/bsd/tre/dist/lib/tre-compile.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/include
Module Name:src Committed By: rin Date: Fri Nov 17 16:17:06 UTC 2017 Modified Files: src/external/bsd/tre/include: config.h tre-config.h Log Message: Regen. Actually stop using alloca(3). To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tre/include/config.h cvs rdiff -u -r1.1 -r1.2 src/external/bsd/tre/include/tre-config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/lib
Module Name:src Committed By: rin Date: Fri Nov 17 16:18:06 UTC 2017 Added Files: src/external/bsd/tre/lib: tre.pc Log Message: Add tre.pc to be installed into /usr/lib/pkgconfig (not yet). To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/external/bsd/tre/lib/tre.pc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: rin Date: Fri Nov 17 16:21:45 UTC 2017 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: Update libtre to the latest git source as of 20171117. To generate a diff of this commit: cvs rdiff -u -r1.1484 -r1.1485 src/doc/3RDPARTY cvs rdiff -u -r1.2332 -r1.2333 src/doc/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist
Module Name:src Committed By: rin Date: Fri Nov 17 16:44:01 UTC 2017 Added Files: src/external/bsd/tre/dist: ChangeLog.old Log Message: Add ChangeLog.old, which has been newly added to github repository. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/external/bsd/tre/dist/ChangeLog.old Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 12:13:14 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-compile.c tre-parse.c Log Message: Fix allocation size with wrong use of sizeof, taken from musl libc: https://git.musl-libc.org/cgit/musl/commit/src/regex/regcomp.c?id=1e81fa4524ecfd51e6a6578ff8038b4c05393101 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tre/dist/lib/tre-compile.c \ src/external/bsd/tre/dist/lib/tre-parse.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 12:26:25 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-compile.c Log Message: Check error code from allocating function, from musl libc: https://git.musl-libc.org/cgit/musl/commit/src/regex/regcomp.c?id=4260dfe1ecc43d92d1e6d30daa0f22bd746d1740 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/tre/dist/lib/tre-compile.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 12:35:39 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-compile.c Log Message: Fix use of uninitialized value, taken from musl libc: https://git.musl-libc.org/cgit/musl/commit/src/regex/regcomp.c?id=51eeb6ebc94d965768143c45e9f39b0a7998bdbd To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/tre/dist/lib/tre-compile.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 13:00:31 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: regexec.c Log Message: nmatch and pmatch should be ignored when regex was compiled with REG_NOSUB, partially taken from musl libc: https://git.musl-libc.org/cgit/musl/commit/src/regex/regexec.c?id=72ed3d47e567b1635a35d3c1d174c8a8b2787e30 To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/external/bsd/tre/dist/lib/regexec.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 13:21:03 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-match-backtrack.c Log Message: ret should be reg_errcode_t. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/tre/dist/lib/tre-match-backtrack.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 13:22:58 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-match-approx.c tre-match-parallel.c tre-match-utils.h Log Message: Fix memory leak when input contains illegal multibyte sequence, partially taken from musl libc: https://git.musl-libc.org/cgit/musl/commit/src/regex/regexec.c?id=546f6b322bcafa2452925c19f9607d9689c75f95 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/tre/dist/lib/tre-match-approx.c \ src/external/bsd/tre/dist/lib/tre-match-parallel.c \ src/external/bsd/tre/dist/lib/tre-match-utils.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 14:03:35 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-match-approx.c tre-match-parallel.c Log Message: Add missing integer overflow checks to avoid out-of-bound write reported in CVE-2016-8859, partially taken from musl libc: https://git.musl-libc.org/cgit/musl/commit/src/regex/regexec.c?id=c3edc06d1e1360f3570db9155d6b318ae0d0f0f7 https://git.musl-libc.org/cgit/musl/commit/src/regex/regexec.c?id=6582baa752a8facb2c8a7b5b3dcf67331429cdc1 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/tre/dist/lib/tre-match-approx.c \ src/external/bsd/tre/dist/lib/tre-match-parallel.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Sun Nov 19 21:54:31 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-match-backtrack.c Log Message: Fix an apparent typo. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/tre/dist/lib/tre-match-backtrack.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Tue Nov 21 02:00:29 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: conv.c Log Message: Fix use of uninitialized variable, found by clang. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/nvi/dist/common/conv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Tue Nov 21 02:04:39 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: mem.h Log Message: Fix -Wsign-compare issue for BINC_GOTO in a similar manner to BINC_RET. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/nvi/dist/common/mem.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Tue Nov 21 02:11:44 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: conv.c Log Message: Fix resource leaks due to missing of iconv_close(3). To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/external/bsd/nvi/dist/common/conv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Tue Nov 21 02:36:45 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: conv.c Log Message: Enable to compile & run without USE_ICONV. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/external/bsd/nvi/dist/common/conv.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Tue Nov 21 02:42:08 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: Cosmetic changes. No functional changes. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Tue Nov 21 02:44:13 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: We always need -Wno-format-nonliteral for v_increment.c whether compiler is gcc or clang. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Tue Nov 21 02:45:03 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: Enable -Wuninitialized -Wformat-security for clang. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/usr.bin/nvi
Module Name:src Committed By: rin Date: Tue Nov 21 02:47:14 UTC 2017 Modified Files: src/external/bsd/nvi/usr.bin/nvi: Makefile Log Message: Bump WARNS to 5. Add -Wno-old-style-definition to regex.c for gcc. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/external/bsd/nvi/usr.bin/nvi/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Tue Nov 21 02:50:35 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre-match-approx.c tre-match-parallel.c Log Message: Some systems need for SIZE_MAX. No functional changes on NetBSD. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/tre/dist/lib/tre-match-approx.c \ src/external/bsd/tre/dist/lib/tre-match-parallel.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist/lib
Module Name:src Committed By: rin Date: Tue Nov 21 02:53:20 UTC 2017 Modified Files: src/external/bsd/tre/dist/lib: tre.h Log Message: Add REG_INVARG and REG_STARTEND ifndef TRE_USE_SYSTEM_REGEX_H. No functional changes at the moment. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/tre/dist/lib/tre.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre
Module Name:src Committed By: rin Date: Tue Nov 21 03:03:31 UTC 2017 Modified Files: src/external/bsd/tre: Makefile.inc Log Message: Bump WARNS to 5. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/tre/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/lib
Module Name:src Committed By: rin Date: Tue Nov 21 03:09:41 UTC 2017 Modified Files: src/external/bsd/tre/lib: Makefile Log Message: Bump WARNS to 5 (via ../Makefile.inc). Remove unnecessary -Wno-stack-protector flag. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tre/lib/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/vi
Module Name:src Committed By: rin Date: Tue Nov 21 06:35:22 UTC 2017 Modified Files: src/external/bsd/nvi/dist/vi: v_txt.c Log Message: Fix screen corruption by rewriting only a part of a multi-width character. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/vi/v_txt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist
Module Name:src Committed By: rin Date: Tue Nov 21 07:43:47 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: key.h src/external/bsd/nvi/dist/vi: v_word.c Log Message: A boundary between single- and multi-width chars is regarded as a word boundary. Suggested on tech-userland@ without any objections. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/key.h cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/vi/v_word.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Tue Nov 21 07:48:07 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex_join.c Log Message: Use ISMULTIWIDTH() macro. No binary changes. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/ex/ex_join.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tre/dist
Module Name:src Committed By: rin Date: Tue Nov 21 08:19:55 UTC 2017 Removed Files: src/external/bsd/tre/dist/doc: Makefile.in src/external/bsd/tre/dist/lib: Makefile.in src/external/bsd/tre/dist/m4: Makefile.in gettext.m4 iconv.m4 intlmacosx.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 nls.m4 po.m4 progtest.m4 src/external/bsd/tre/dist/po: Makefile.in.in Rules-quot boldquot.sed en@boldquot.header en@quot.header insert-header.sin quot.sed remove-potcdate.sin stamp-po tre.pot src/external/bsd/tre/dist/src: Makefile.in src/external/bsd/tre/dist/tests: Makefile.in src/external/bsd/tre/dist/tests/agrep: Makefile.in src/external/bsd/tre/dist/utils: Makefile.in compile config.guess config.rpath config.sub depcomp install-sh ltmain.sh missing mkinstalldirs src/external/bsd/tre/dist/win32: retest.dsp tre.dsp tre.dsw Log Message: Remove more files that should be removed when tre was imported from github repository. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/doc/Makefile.in cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/lib/Makefile.in cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/m4/Makefile.in \ src/external/bsd/tre/dist/m4/gettext.m4 \ src/external/bsd/tre/dist/m4/iconv.m4 \ src/external/bsd/tre/dist/m4/intlmacosx.m4 \ src/external/bsd/tre/dist/m4/lib-ld.m4 \ src/external/bsd/tre/dist/m4/lib-link.m4 \ src/external/bsd/tre/dist/m4/lib-prefix.m4 \ src/external/bsd/tre/dist/m4/nls.m4 src/external/bsd/tre/dist/m4/po.m4 \ src/external/bsd/tre/dist/m4/progtest.m4 cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/po/Makefile.in.in \ src/external/bsd/tre/dist/po/Rules-quot \ src/external/bsd/tre/dist/po/boldquot.sed \ src/external/bsd/tre/dist/po/en@boldquot.header \ src/external/bsd/tre/dist/po/en@quot.header \ src/external/bsd/tre/dist/po/insert-header.sin \ src/external/bsd/tre/dist/po/quot.sed \ src/external/bsd/tre/dist/po/remove-potcdate.sin \ src/external/bsd/tre/dist/po/stamp-po \ src/external/bsd/tre/dist/po/tre.pot cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/src/Makefile.in cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/tests/Makefile.in cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/tests/agrep/Makefile.in cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/utils/Makefile.in \ src/external/bsd/tre/dist/utils/compile \ src/external/bsd/tre/dist/utils/config.rpath \ src/external/bsd/tre/dist/utils/depcomp \ src/external/bsd/tre/dist/utils/install-sh \ src/external/bsd/tre/dist/utils/ltmain.sh \ src/external/bsd/tre/dist/utils/missing \ src/external/bsd/tre/dist/utils/mkinstalldirs cvs rdiff -u -r1.2 -r0 src/external/bsd/tre/dist/utils/config.guess \ src/external/bsd/tre/dist/utils/config.sub cvs rdiff -u -r1.1.1.1 -r0 src/external/bsd/tre/dist/win32/retest.dsp \ src/external/bsd/tre/dist/win32/tre.dsp \ src/external/bsd/tre/dist/win32/tre.dsw Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist
Module Name:src Committed By: rin Date: Wed Nov 22 12:47:30 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: delete.c src/external/bsd/nvi/dist/vi: v_sentence.c Log Message: Fix segmentation fault in corner case of backward sentence deletion, taken from nvi2 (and Debian Bug report #193498): https://github.com/lichray/nvi2/commit/e84d40ec20b257edad6810062204366ff0ddff58 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=193498 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/delete.c cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/vi/v_sentence.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Wed Nov 22 13:13:18 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex.c Log Message: Fix backward memcpy in :e +cmd, taken from nvi2 (and OpenBSD): https://github.com/lichray/nvi2/commit/7ab02500a2d89bc45db383cb3dcd10f3c4301a8c http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/usr.bin/vi/ex/ex.c#rev1.21 To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/external/bsd/nvi/dist/ex/ex.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Wed Nov 22 16:17:30 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: search.c Log Message: Fix missing of "search wrapped" message when searching from the last char of file, taken from nvi2: https://github.com/lichray/nvi2/commit/a59e892d23212559eb1001e5d2a312a02e357651 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/search.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/common
Module Name:src Committed By: rin Date: Fri Dec 1 18:35:58 UTC 2017 Modified Files: src/external/bsd/nvi/dist/common: common.h Log Message: Remove ex_printf duplicate with ex_extern.h. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/common/common.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Fri Dec 1 18:39:49 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex_print.c Log Message: Check format strings for ex_printf. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/bsd/nvi/dist/ex/ex_print.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/ex
Module Name:src Committed By: rin Date: Fri Dec 1 20:01:31 UTC 2017 Modified Files: src/external/bsd/nvi/dist/ex: ex_usage.c Log Message: Compare ap->len wide chars, not ap->len bytes. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/external/bsd/nvi/dist/ex/ex_usage.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 6 11:33:35 UTC 2017 Modified Files: src/lib/libc/gen: fmtcheck.c Log Message: Correct oversight of wrong format string with fewer number of arguments than default format string has. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/lib/libc/gen/fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 6 12:28:53 UTC 2017 Modified Files: src/lib/libc/gen: fmtcheck.c Log Message: Teach fmtcheck(3) about the flags a, A, F, G, t, and z. Taken from FreeBSD: https://svnweb.freebsd.org/base/head/lib/libc/gen/fmtcheck.c#rev117014 To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/lib/libc/gen/fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 6 12:30:27 UTC 2017 Modified Files: src/lib/libc/gen: fmtcheck.c Log Message: Teach fmtcheck(3) about the ' (thousands separator) flag. Taken from FreeBSD: https://svnweb.freebsd.org/base/head/lib/libc/gen/fmtcheck.c#rev143905 To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/lib/libc/gen/fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 6 12:32:02 UTC 2017 Modified Files: src/lib/libc/gen: fmtcheck.c Log Message: Teach fmtcheck(3) about wint_t, intmax_t, char *, intmax_t *, and wide string arguments. Taken from FreeBSD: https://svnweb.freebsd.org/base/head/lib/libc/gen/fmtcheck.c#rev181154 To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/lib/libc/gen/fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 6 14:05:14 UTC 2017 Modified Files: src/lib/libc/gen: fmtcheck.c Log Message: Fix possible use of uninitialized variable in case of WIN32 && !_WIN64. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/lib/libc/gen/fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/libproc/dist
Module Name:src Committed By: rin Date: Fri Dec 8 13:36:22 UTC 2017 Modified Files: src/external/bsd/libproc/dist: proc_bkpt.c Log Message: Use PRIxPTR instead of lx to print pointers. Fix debug build with LLVM. Also use PRIxPTR instead of PRIuPTR, which is apparently misused. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/external/bsd/libproc/dist/proc_bkpt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb/lib/libgdb
Module Name:src Committed By: rin Date: Fri Dec 8 14:07:58 UTC 2017 Modified Files: src/external/gpl3/gdb/lib/libgdb: Makefile Log Message: Remove blank lines. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/external/gpl3/gdb/lib/libgdb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3
Module Name:src Committed By: rin Date: Fri Dec 8 14:10:29 UTC 2017 Modified Files: src/external/gpl3/gdb.old/lib/libgdb: Makefile src/external/gpl3/gdb/lib/libgdb: Makefile Log Message: Remove old leftover of migration from gnu/dist/gdb6. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/gpl3/gdb.old/lib/libgdb/Makefile cvs rdiff -u -r1.16 -r1.17 src/external/gpl3/gdb/lib/libgdb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gdb
Module Name:src Committed By: rin Date: Fri Dec 8 14:19:47 UTC 2017 Modified Files: src/external/gpl3/gdb/bin/gdb: Makefile src/external/gpl3/gdb/bin/gdbtui: Makefile src/external/gpl3/gdb/lib/libgdb: Makefile Log Message: When forcing C++ mode for C sources, clang requires -Wno-deprecated. Fix build with LLVM. Thanks @a_rin for report on Twitter. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/external/gpl3/gdb/bin/gdb/Makefile cvs rdiff -u -r1.10 -r1.11 src/external/gpl3/gdb/bin/gdbtui/Makefile cvs rdiff -u -r1.17 -r1.18 src/external/gpl3/gdb/lib/libgdb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 13 06:43:46 UTC 2017 Modified Files: src/lib/libc/gen: fmtcheck.c Log Message: Revert change made by rev 1.11; now, fmtcheck(3) does not complain about unused trailing arguments as before. See also discussion on tech-userland: http://mail-index.netbsd.org/tech-userlevel/2017/12/07/msg011019.html To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/lib/libc/gen/fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libc/gen
Module Name:src Committed By: rin Date: Wed Dec 13 06:47:04 UTC 2017 Modified Files: src/tests/lib/libc/gen: t_fmtcheck.c Log Message: Revert rev 1.4: fmtcheck(3) neglect unused trailing arguments as before. "%d" is a valid format string with default format string "%d %s", etc. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tests/lib/libc/gen/t_fmtcheck.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/zaurus/conf
Module Name:src Committed By: rin Date: Wed Dec 20 08:10:13 UTC 2017 Modified Files: src/sys/arch/zaurus/conf: INSTALL Log Message: Disable compat stuffs that are accidentally accidentally added to rev 1.33. Now INSTALL kernel fits within 5MB again. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/arch/zaurus/conf/INSTALL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: xsrc/external/mit/libXfont/dist/src/fc
Module Name:xsrc Committed By: rin Date: Wed Dec 20 23:07:30 UTC 2017 Modified Files: xsrc/external/mit/libXfont/dist/src/fc: fserve.c Log Message: Fix debug build with LLVM for ILP32 archs. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 xsrc/external/mit/libXfont/dist/src/fc/fserve.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/ews4800mips/floppies/ramdisk
Module Name:src Committed By: rin Date: Mon Dec 25 06:15:50 UTC 2017 Modified Files: src/distrib/ews4800mips/floppies/ramdisk: list Log Message: Drop the following features, which reduces ramdisk.bin about 70KB: - shutdown, rcmd, rcp - support for byte-swapped FFS and Apple UFS in fsck_ffs and newfs - support for byte-swapped label and interactive editor in disklabel OK tsutsui To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/distrib/ews4800mips/floppies/ramdisk/list Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/i386/conf
Module Name:src Committed By: rin Date: Mon Dec 25 06:35:57 UTC 2017 Modified Files: src/sys/arch/i386/conf: INSTALL Log Message: install/52845: Enable vga@isa and pcdisplay for INSTALL. Otherwise, install media do not boot on pre-PCI machines. XXX pullup to netbsd-8 and netbsd-7 To generate a diff of this commit: cvs rdiff -u -r1.331 -r1.332 src/sys/arch/i386/conf/INSTALL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch
Module Name:src Committed By: rin Date: Mon Dec 25 06:39:00 UTC 2017 Modified Files: src/sys/arch/amd64/conf: INSTALL src/sys/arch/i386/conf: INSTALL Log Message: Disable nouveau for INSTALL as in a similar manner to other DRMKMS drivers. XXX pullup to netbsd-8 To generate a diff of this commit: cvs rdiff -u -r1.91 -r1.92 src/sys/arch/amd64/conf/INSTALL cvs rdiff -u -r1.332 -r1.333 src/sys/arch/i386/conf/INSTALL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/wscons
Module Name:src Committed By: rin Date: Sat Jan 20 23:27:06 UTC 2018 Modified Files: src/sys/dev/wscons: wsemul_vt100.c Log Message: Correct wrong assertion code introduced by rev 1.41: http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/dev/wscons/wsemul_vt100.c#rev1.41 Fix kernel panic reported in PR kern/52935. To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 src/sys/dev/wscons/wsemul_vt100.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: rin Date: Sun Jan 28 01:09:58 UTC 2018 Modified Files: src/distrib/zaurus/ramdisk: Makefile list src/sys/arch/zaurus/conf: INSTALL Log Message: Shrink ramdisk to fit INSTALL kernel within 5MB: - drop shutdown - replace disklabel, fsck_ffs, and newfs with stripped-down versions To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/distrib/zaurus/ramdisk/Makefile cvs rdiff -u -r1.20 -r1.21 src/distrib/zaurus/ramdisk/list cvs rdiff -u -r1.34 -r1.35 src/sys/arch/zaurus/conf/INSTALL Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: rin Date: Tue Feb 6 13:26:32 UTC 2018 Modified Files: src/sys/dev/ic: msm6242b.c Log Message: Remove misplaced semicolon, found by GCC 6. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/ic/msm6242b.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/amiga/dev
Module Name:src Committed By: rin Date: Mon Mar 5 04:23:00 UTC 2018 Modified Files: src/sys/arch/amiga/dev: grf_et.c Log Message: Remove duplicate vgaw() accidentally introduced in the previous revision. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/sys/arch/amiga/dev/grf_et.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/sets/lists/xdebug
Module Name:src Committed By: rin Date: Wed Mar 14 13:23:31 UTC 2018 Modified Files: src/distrib/sets/lists/xdebug: md.i386 Log Message: Restore shlib version accidentally bumped in the previous commit. Fix debug build for i386. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.36 src/distrib/sets/lists/xdebug/md.i386 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: rin Date: Thu Mar 22 12:20:56 UTC 2018 Modified Files: src/sys/dev/ic: ninjascsi32.c Log Message: Do not call scsipi routines via njsc32_init before scsibus is attached. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/dev/ic/ninjascsi32.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/amd64/conf
Module Name:src Committed By: rin Date: Thu Mar 22 12:26:29 UTC 2018 Modified Files: src/sys/arch/amd64/conf: GENERIC Log Message: Add njs(4) at pci(4) and cardbus(4). To generate a diff of this commit: cvs rdiff -u -r1.485 -r1.486 src/sys/arch/amd64/conf/GENERIC Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: rin Date: Thu Mar 22 14:07:42 UTC 2018 Modified Files: src/sys/dev/ic: ninjascsi32.c Log Message: Redo previous; reset async events only if scsibus has already been attached. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/dev/ic/ninjascsi32.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: rin Date: Mon Apr 2 10:32:47 UTC 2018 Modified Files: src/sys/dev/ic: aic7xxx.c Log Message: Initialize ahc->shared_data_size appropriately. Fix panic when detach. To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.133 src/sys/dev/ic/aic7xxx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/ic
Module Name:src Committed By: rin Date: Mon Apr 2 10:44:06 UTC 2018 Modified Files: src/sys/dev/ic: aic7xxx.c Log Message: Use ahc_freedmamem() for consistency. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.133 -r1.134 src/sys/dev/ic/aic7xxx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/cardbus
Module Name:src Committed By: rin Date: Mon Apr 2 11:02:53 UTC 2018 Modified Files: src/sys/dev/cardbus: ahc_cardbus.c Log Message: Remove extra printf duplicate with MI codes. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.37 src/sys/dev/cardbus/ahc_cardbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist/vi
Module Name:src Committed By: rin Date: Tue Apr 10 12:44:41 UTC 2018 Modified Files: src/external/bsd/nvi/dist/vi: vs_refresh.c Log Message: PR bin/53164: Comment why we abort here. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/external/bsd/nvi/dist/vi/vs_refresh.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: rin Date: Wed Apr 11 00:26:38 UTC 2018 Modified Files: src/distrib/sets/lists/base: rescue.mi src/rescue: list Log Message: Add progress(1) into /rescue. No objection when proposed on tech-userlevel@. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/distrib/sets/lists/base/rescue.mi cvs rdiff -u -r1.48 -r1.49 src/rescue/list Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/netisdn
Module Name:src Committed By: rin Date: Sat Apr 21 08:30:19 UTC 2018 Modified Files: src/sys/netisdn: i4b_ipr.c Log Message: Remove unused variable since previous revision. To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 src/sys/netisdn/i4b_ipr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/locale/ctype
Module Name:src Committed By: rin Date: Sun Jun 3 07:54:51 UTC 2018 Modified Files: src/share/locale/ctype: en_US.UTF-8.src Log Message: Add characters in "Emoji & Pictographs" from Unicode 10.0.0: http://www.unicode.org/charts/ They are classified as PUNCT, which is historically used for characters other than blank, alphabetic, or digit ones. Glyph widths are taken from "East Asian Width": https://www.unicode.org/Public/10.0.0/ucd/EastAsianWidth.txt Characters of "F" or "W" are classified to SWIDTH2, and others are classified to SWIDTH1, as implicitly done in the previous revisions. Should address problems like PR bin/53323. Discussed with soda@. We thank Takuya SHIOZAKI (tshiozak@) for useful comments. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/share/locale/ctype/en_US.UTF-8.src Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/nvi/dist
Module Name:src Committed By: rin Date: Sun Jun 3 08:08:37 UTC 2018 Modified Files: src/external/bsd/nvi/dist/common: conv.h src/external/bsd/nvi/dist/vi: vs_line.c vs_relative.c Log Message: Make sure that every wide char occupies at least one display width: - Replace non-printable multibyte char with ?-symbol. - Put space before non-spacing char. Fix problems reported in PR bin/53164 and PR bin/53323, that are because we did not take into account non-printable multibyte char of wctob(wc) == EOF && wcwidth(wc) == -1. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/bsd/nvi/dist/common/conv.h cvs rdiff -u -r1.4 -r1.5 src/external/bsd/nvi/dist/vi/vs_line.c \ src/external/bsd/nvi/dist/vi/vs_relative.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.