CVS commit: src/bin/cp

2024-06-07 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Fri Jun 7 21:01:00 UTC 2024 Modified Files: src/bin/cp: cp.c Log Message: s/concatentation/concatenation/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/bin/cp/cp.c Please note that diffs are

CVS commit: src/bin/cp

2024-06-07 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Fri Jun 7 21:01:00 UTC 2024 Modified Files: src/bin/cp: cp.c Log Message: s/concatentation/concatenation/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 src/bin/cp/cp.c Please note that diffs are

Re: CVS commit: src/bin/echo

2024-05-14 Thread Robert Elz
Date:Wed, 15 May 2024 02:33:23 +0300 From:Valery Ushakov Message-ID: | I vaguely remember I read somewhere that printf(1) was specifically | conceived to take no options, but that can be planted memories. May | be it's indeed induced by the old state of

Re: CVS commit: src/bin/echo

2024-05-14 Thread Valery Ushakov
On Wed, May 15, 2024 at 05:22:25 +0700, Robert Elz wrote: > | Unfortunately that advice is not true without further caveats. > > That you have to actually write a valid printf(1) command, and not > simply s/echo/printf/ ? Does that really need saying? > > > | netbsd$ sh -c "printf

Re: CVS commit: src/bin/echo

2024-05-14 Thread Robert Elz
Date:Tue, 14 May 2024 12:41:51 +0300 From:Valery Ushakov Message-ID: | Unfortunately that advice is not true without further caveats. That you have to actually write a valid printf(1) command, and not simply s/echo/printf/ ? Does that really need saying? |

Re: CVS commit: src/bin/echo

2024-05-14 Thread Valery Ushakov
On Tue, May 14, 2024 at 01:32:25 +, David H. Gutteridge wrote: > Log Message: > echo.1: borrow advice about printf(1) from the OpenBSD man page Unfortunately that advice is not true without further caveats. netbsd$ sh -c "printf '-V\n'" -V $ busybox sh -c "printf '-V\n'" -V ubuntu$ $ dash

CVS commit: src/bin/echo

2024-05-13 Thread David H. Gutteridge
Module Name:src Committed By: gutteridge Date: Tue May 14 01:32:25 UTC 2024 Modified Files: src/bin/echo: echo.1 Log Message: echo.1: borrow advice about printf(1) from the OpenBSD man page To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20

CVS commit: src/bin/echo

2024-05-13 Thread David H. Gutteridge
Module Name:src Committed By: gutteridge Date: Tue May 14 01:32:25 UTC 2024 Modified Files: src/bin/echo: echo.1 Log Message: echo.1: borrow advice about printf(1) from the OpenBSD man page To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:49:03 UTC 2024 Modified Files: src/bin/csh: dir.c file.c func.c glob.c misc.c str.c Log Message: csh: replace malloc(x * y) and realloc(x * y) with reallocarray To generate a diff of this commit: cvs rdiff -u -r1.35

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:49:03 UTC 2024 Modified Files: src/bin/csh: dir.c file.c func.c glob.c misc.c str.c Log Message: csh: replace malloc(x * y) and realloc(x * y) with reallocarray To generate a diff of this commit: cvs rdiff -u -r1.35

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:47:12 UTC 2024 Modified Files: src/bin/csh: csh.h Log Message: csh: add a helper definition for the reallocarray function To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/bin/csh/csh.h Please note

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:47:12 UTC 2024 Modified Files: src/bin/csh: csh.h Log Message: csh: add a helper definition for the reallocarray function To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/bin/csh/csh.h Please note

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:46:20 UTC 2024 Modified Files: src/bin/csh: alloc.c extern.h Log Message: csh: add a reallocarray function for using inside csh To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/bin/csh/alloc.c cvs

CVS commit: src/bin/csh

2024-04-24 Thread Nia Alarie
Module Name:src Committed By: nia Date: Wed Apr 24 15:46:20 UTC 2024 Modified Files: src/bin/csh: alloc.c extern.h Log Message: csh: add a reallocarray function for using inside csh To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/bin/csh/alloc.c cvs

CVS commit: src/bin/sh

2024-04-16 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Tue Apr 16 23:30:19 UTC 2024 Modified Files: src/bin/sh: mkoptions.sh Log Message: Be more explicit with sort fields to produce consistent results with gnu sort (Jan-Benedict Glaw) To generate a diff of this commit: cvs rdiff

CVS commit: src/bin/sh

2024-04-16 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Tue Apr 16 23:30:19 UTC 2024 Modified Files: src/bin/sh: mkoptions.sh Log Message: Be more explicit with sort fields to produce consistent results with gnu sort (Jan-Benedict Glaw) To generate a diff of this commit: cvs rdiff

CVS commit: src/bin/sh

2024-04-12 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Apr 12 19:09:50 UTC 2024 Modified Files: src/bin/sh: sh.1 Log Message: Edgar Fuß pointed out that sh(1) did not mention comments (at all). This has been true forever, and no-one else (including me) ever seems to have noticed

CVS commit: src/bin/sh

2024-04-12 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Apr 12 19:09:50 UTC 2024 Modified Files: src/bin/sh: sh.1 Log Message: Edgar Fuß pointed out that sh(1) did not mention comments (at all). This has been true forever, and no-one else (including me) ever seems to have noticed

CVS commit: src/bin/ed

2024-04-10 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Apr 10 17:52:41 UTC 2024 Modified Files: src/bin/ed: glbl.c Log Message: ed: fix inconsistency in comment To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/bin/ed/glbl.c Please note that diffs are not

CVS commit: src/bin/ed

2024-04-10 Thread Roland Illig
Module Name:src Committed By: rillig Date: Wed Apr 10 17:52:41 UTC 2024 Modified Files: src/bin/ed: glbl.c Log Message: ed: fix inconsistency in comment To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/bin/ed/glbl.c Please note that diffs are not

CVS commit: src/bin/sh

2024-04-06 Thread Robert Elz
Module Name:src Committed By: kre Date: Sat Apr 6 14:20:27 UTC 2024 Modified Files: src/bin/sh: mkoptions.sh Log Message: Redo the mktemp(1) part - some mktemp's (including ours) require the 's to be at the end of the name (like mk*temp(3)) so however well it will

CVS commit: src/bin/sh

2024-04-06 Thread Robert Elz
Module Name:src Committed By: kre Date: Sat Apr 6 14:20:27 UTC 2024 Modified Files: src/bin/sh: mkoptions.sh Log Message: Redo the mktemp(1) part - some mktemp's (including ours) require the 's to be at the end of the name (like mk*temp(3)) so however well it will

CVS commit: src/bin/sh

2024-04-05 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Apr 5 22:22:17 UTC 2024 Modified Files: src/bin/sh: mkoptions.sh Log Message: >From Jan-Benedict Glaw: Fix a redirection and prepare a stable sort for upper-/lowercase option letters This script is a mess, I strongly

CVS commit: src/bin/sh

2024-04-05 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Apr 5 22:22:17 UTC 2024 Modified Files: src/bin/sh: mkoptions.sh Log Message: >From Jan-Benedict Glaw: Fix a redirection and prepare a stable sort for upper-/lowercase option letters This script is a mess, I strongly

CVS commit: src/bin/ls

2024-02-02 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Feb 2 22:58:26 UTC 2024 Modified Files: src/bin/ls: ls.c Log Message: PR/57892: Roberto Branco: Print full pathname in error messages To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/bin/ls/ls.c Please

CVS commit: src/bin/ls

2024-02-02 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Fri Feb 2 22:58:26 UTC 2024 Modified Files: src/bin/ls: ls.c Log Message: PR/57892: Roberto Branco: Print full pathname in error messages To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/bin/ls/ls.c Please

CVS commit: src/bin/sh

2024-01-30 Thread Robert Elz
Module Name:src Committed By: kre Date: Tue Jan 30 19:05:07 UTC 2024 Modified Files: src/bin/sh: jobs.c Log Message: PR bin/57894 For jobs -p for a non-job-control job, avoid just printing 0 (as there is no process group pid) and instead output what we used to, the pid

CVS commit: src/bin/sh

2024-01-30 Thread Robert Elz
Module Name:src Committed By: kre Date: Tue Jan 30 19:05:07 UTC 2024 Modified Files: src/bin/sh: jobs.c Log Message: PR bin/57894 For jobs -p for a non-job-control job, avoid just printing 0 (as there is no process group pid) and instead output what we used to, the pid

CVS commit: src/bin/dd

2024-01-25 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Fri Jan 26 07:10:04 UTC 2024 Modified Files: src/bin/dd: args.c Log Message: Don't use the signal handler to terminate when nothing is to do (count=0, files=0). The signal handler tries to raise the signal again, so that a

CVS commit: src/bin/dd

2024-01-25 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Fri Jan 26 07:10:04 UTC 2024 Modified Files: src/bin/dd: args.c Log Message: Don't use the signal handler to terminate when nothing is to do (count=0, files=0). The signal handler tries to raise the signal again, so that a

Re: CVS commit: src/bin/date

2024-01-22 Thread Christos Zoulas
In article <19118.1705868...@jacaranda.noi.kre.to>, Robert Elz wrote: >Date:Sun, 21 Jan 2024 18:16:28 - (UTC) >From:chris...@astron.com (Christos Zoulas) >Message-ID: > > | I think this is the yacc used by the build process, not the yacc > | to build tools

Re: CVS commit: src/bin/date

2024-01-21 Thread Robert Elz
Date:Sun, 21 Jan 2024 18:16:28 - (UTC) From:chris...@astron.com (Christos Zoulas) Message-ID: | I think this is the yacc used by the build process, not the yacc | to build tools with? I.e. will this yacc produce c files usable in | the host compilation

Re: CVS commit: src/bin/date

2024-01-21 Thread Roland Illig
Am 21.01.2024 um 19:16 schrieb Christos Zoulas: > In article , > Valery Ushakov wrote: >> On Sun, Jan 21, 2024 at 11:55:56 -0500, Christos Zoulas wrote: >> >>> Consider providing parsedate(3) in libcompat, but then we'd need >>> yacc... >> >> We already have yacc in tools - src/tools/yacc > > I

Re: CVS commit: src/bin/date

2024-01-21 Thread Christos Zoulas
In article , Valery Ushakov wrote: >On Sun, Jan 21, 2024 at 11:55:56 -0500, Christos Zoulas wrote: > >> Consider providing parsedate(3) in libcompat, but then we'd need >> yacc... > >We already have yacc in tools - src/tools/yacc I think this is the yacc used by the build process, not the yacc

Re: CVS commit: src/bin/date

2024-01-21 Thread Valery Ushakov
On Sun, Jan 21, 2024 at 11:55:56 -0500, Christos Zoulas wrote: > Consider providing parsedate(3) in libcompat, but then we'd need > yacc... We already have yacc in tools - src/tools/yacc -uwe

CVS commit: src/bin/date

2024-01-21 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Jan 21 16:55:56 UTC 2024 Modified Files: src/bin/date: date.c Log Message: Handle -d %Y%m%d in the tools version. This is used in the release notes Makefile.inc when BUILDID is specified. Consider providing parsedate(3) in

CVS commit: src/bin/date

2024-01-21 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Jan 21 16:55:56 UTC 2024 Modified Files: src/bin/date: date.c Log Message: Handle -d %Y%m%d in the tools version. This is used in the release notes Makefile.inc when BUILDID is specified. Consider providing parsedate(3) in

CVS commit: src/bin/sh

2024-01-16 Thread Robert Elz
Module Name:src Committed By: kre Date: Tue Jan 16 14:30:22 UTC 2024 Modified Files: src/bin/sh: sh.1 Log Message: Remove an ancient incorrect notion which somehow survived intact for ages. "$@" is (as it is in double quotes) not subject to field splitting. "$@"

CVS commit: src/bin/sh

2024-01-16 Thread Robert Elz
Module Name:src Committed By: kre Date: Tue Jan 16 14:30:22 UTC 2024 Modified Files: src/bin/sh: sh.1 Log Message: Remove an ancient incorrect notion which somehow survived intact for ages. "$@" is (as it is in double quotes) not subject to field splitting. "$@"

CVS commit: src/bin/cp

2024-01-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Jan 15 17:41:06 UTC 2024 Modified Files: src/bin/cp: utils.c Log Message: PR/57857: Ricardo Branco: Always copy regular files, even if they appear to be zero-sized. To generate a diff of this commit: cvs rdiff -u -r1.49

CVS commit: src/bin/cp

2024-01-15 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Jan 15 17:41:06 UTC 2024 Modified Files: src/bin/cp: utils.c Log Message: PR/57857: Ricardo Branco: Always copy regular files, even if they appear to be zero-sized. To generate a diff of this commit: cvs rdiff -u -r1.49

CVS commit: src/bin/sh

2023-12-29 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Dec 29 15:49:24 UTC 2023 Modified Files: src/bin/sh: expand.c Log Message: PR bin/57773 Fix another bug reported by Jarle Fredrik Greipsland and added to PR bin/57773, which relates to calculating the length of a positional

CVS commit: src/bin/sh

2023-12-29 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Dec 29 15:49:24 UTC 2023 Modified Files: src/bin/sh: expand.c Log Message: PR bin/57773 Fix another bug reported by Jarle Fredrik Greipsland and added to PR bin/57773, which relates to calculating the length of a positional

CVS commit: src/bin/sh

2023-12-24 Thread Robert Elz
Module Name:src Committed By: kre Date: Mon Dec 25 04:52:38 UTC 2023 Modified Files: src/bin/sh: eval.c Log Message: PR bin/57773 Fix a bug reported by Jarle Fredrik Greipsland in PR bin/57773, where a substring expansion where the substring to be removed from a variable

CVS commit: src/bin/sh

2023-12-24 Thread Robert Elz
Module Name:src Committed By: kre Date: Mon Dec 25 04:52:38 UTC 2023 Modified Files: src/bin/sh: eval.c Log Message: PR bin/57773 Fix a bug reported by Jarle Fredrik Greipsland in PR bin/57773, where a substring expansion where the substring to be removed from a variable

CVS commit: src/bin/sh

2023-12-24 Thread Robert Elz
Module Name:src Committed By: kre Date: Mon Dec 25 02:28:47 UTC 2023 Modified Files: src/bin/sh: expand.c Log Message: Correct a bizarre piece of source formatting that crept in by accident several years ago (change a space into newline tab). NFC To generate a diff of

CVS commit: src/bin/sh

2023-12-24 Thread Robert Elz
Module Name:src Committed By: kre Date: Mon Dec 25 02:28:47 UTC 2023 Modified Files: src/bin/sh: expand.c Log Message: Correct a bizarre piece of source formatting that crept in by accident several years ago (change a space into newline tab). NFC To generate a diff of

CVS commit: src/bin/df

2023-12-18 Thread Robert Elz
Module Name:src Committed By: kre Date: Mon Dec 18 08:27:24 UTC 2023 Modified Files: src/bin/df: df.c Log Message: Correctly compute the "Filesystem" column with when using -W (that added "NAME=" occupies space!) XXX pullup -10 To generate a diff of this commit: cvs

CVS commit: src/bin/df

2023-12-18 Thread Robert Elz
Module Name:src Committed By: kre Date: Mon Dec 18 08:27:24 UTC 2023 Modified Files: src/bin/df: df.c Log Message: Correctly compute the "Filesystem" column with when using -W (that added "NAME=" occupies space!) XXX pullup -10 To generate a diff of this commit: cvs

CVS commit: src/bin/cat

2023-12-10 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sun Dec 10 15:31:53 UTC 2023 Modified Files: src/bin/cat: cat.c Log Message: cat: repeat storage class 'static' for local functions No binary change. To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60

CVS commit: src/bin/cat

2023-12-10 Thread Roland Illig
Module Name:src Committed By: rillig Date: Sun Dec 10 15:31:53 UTC 2023 Modified Files: src/bin/cat: cat.c Log Message: cat: repeat storage class 'static' for local functions No binary change. To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60

CVS commit: src/bin/cat

2023-12-07 Thread Roland Illig
Module Name:src Committed By: rillig Date: Thu Dec 7 20:02:07 UTC 2023 Modified Files: src/bin/cat: cat.c Log Message: cat: reduce visibility of local functions No functional change. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/bin/cat/cat.c

CVS commit: src/bin/cat

2023-12-07 Thread Roland Illig
Module Name:src Committed By: rillig Date: Thu Dec 7 20:02:07 UTC 2023 Modified Files: src/bin/cat: cat.c Log Message: cat: reduce visibility of local functions No functional change. To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 src/bin/cat/cat.c

CVS commit: src/bin/sh

2023-10-20 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Oct 20 22:08:52 UTC 2023 Modified Files: src/bin/sh: parser.c Log Message: Work around a probably gcc12 bug in detecting "potentially clobbered" variables after longjmp() for some architectures (sh3 at least). This should allow

CVS commit: src/bin/sh

2023-10-20 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Oct 20 22:08:52 UTC 2023 Modified Files: src/bin/sh: parser.c Log Message: Work around a probably gcc12 bug in detecting "potentially clobbered" variables after longjmp() for some architectures (sh3 at least). This should allow

CVS commit: src/bin/sh

2023-10-18 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Oct 19 04:27:24 UTC 2023 Modified Files: src/bin/sh: Makefile Log Message: convert gcc12 -O1 into -Wno-error=clobbered. parser.c wants all the optimisation, and this is very likely a false positive. To generate a diff of this

CVS commit: src/bin/sh

2023-10-18 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Oct 19 04:27:24 UTC 2023 Modified Files: src/bin/sh: Makefile Log Message: convert gcc12 -O1 into -Wno-error=clobbered. parser.c wants all the optimisation, and this is very likely a false positive. To generate a diff of this

CVS commit: src/bin/sh

2023-10-14 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Oct 14 06:53:56 UTC 2023 Modified Files: src/bin/sh: Makefile Log Message: the parser.c longjmp vs gcc12 issue affects a few ports, make the workaround global. To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122

CVS commit: src/bin/sh

2023-10-14 Thread matthew green
Module Name:src Committed By: mrg Date: Sat Oct 14 06:53:56 UTC 2023 Modified Files: src/bin/sh: Makefile Log Message: the parser.c longjmp vs gcc12 issue affects a few ports, make the workaround global. To generate a diff of this commit: cvs rdiff -u -r1.121 -r1.122

CVS commit: src/bin/sh

2023-10-11 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Thu Oct 12 01:45:07 UTC 2023 Modified Files: src/bin/sh: sh.1 Log Message: sh(1): touch up markup for the ENV example Don't use Dq in a literal display, ascii quotes are \*q While here mark up as literal a few things around this

CVS commit: src/bin/sh

2023-10-11 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Thu Oct 12 01:45:07 UTC 2023 Modified Files: src/bin/sh: sh.1 Log Message: sh(1): touch up markup for the ENV example Don't use Dq in a literal display, ascii quotes are \*q While here mark up as literal a few things around this

CVS commit: src/bin/sh

2023-10-05 Thread Robert Elz
Module Name:src Committed By: kre Date: Thu Oct 5 20:33:31 UTC 2023 Modified Files: src/bin/sh: miscbltin.c Log Message: If the read builtin is told to read into IFS, we must avoid doing that until all current uses of IFS are complete (as we have IFS's value cached in

CVS commit: src/bin/sh

2023-10-05 Thread Robert Elz
Module Name:src Committed By: kre Date: Thu Oct 5 20:33:31 UTC 2023 Modified Files: src/bin/sh: miscbltin.c Log Message: If the read builtin is told to read into IFS, we must avoid doing that until all current uses of IFS are complete (as we have IFS's value cached in

CVS commit: src/bin/sh

2023-08-31 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Sep 1 01:57:54 UTC 2023 Modified Files: src/bin/sh: sh.1 Log Message: At the request of bad@ enhance the synopsis of the set built-in command to include explicit mention of the -o opt and +o opt forms. Fix the synopsis to have

CVS commit: src/bin/sh

2023-08-31 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Sep 1 01:57:54 UTC 2023 Modified Files: src/bin/sh: sh.1 Log Message: At the request of bad@ enhance the synopsis of the set built-in command to include explicit mention of the -o opt and +o opt forms. Fix the synopsis to have

CVS commit: src/bin/sh

2023-08-13 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Aug 14 03:18:15 UTC 2023 Modified Files: src/bin/sh: Makefile Log Message: use -O1 on sh3, GCC 12 and parser.c. this triggers clobbered vs. longjmp/setjmp warnings with -Os that sh3 uses. To generate a diff of this commit:

CVS commit: src/bin/sh

2023-08-13 Thread matthew green
Module Name:src Committed By: mrg Date: Mon Aug 14 03:18:15 UTC 2023 Modified Files: src/bin/sh: Makefile Log Message: use -O1 on sh3, GCC 12 and parser.c. this triggers clobbered vs. longjmp/setjmp warnings with -Os that sh3 uses. To generate a diff of this commit:

CVS commit: src/bin/sh

2023-08-04 Thread Jan Schaumann
Module Name:src Committed By: jschauma Date: Fri Aug 4 15:31:40 UTC 2023 Modified Files: src/bin/sh: sh.1 Log Message: tyops: * redicection -> redirection * escaoed -> escaped Noted by J. Lewis Muir on netbsd-docs@ To generate a diff of this commit: cvs rdiff -u

CVS commit: src/bin/sh

2023-08-04 Thread Jan Schaumann
Module Name:src Committed By: jschauma Date: Fri Aug 4 15:31:40 UTC 2023 Modified Files: src/bin/sh: sh.1 Log Message: tyops: * redicection -> redirection * escaoed -> escaped Noted by J. Lewis Muir on netbsd-docs@ To generate a diff of this commit: cvs rdiff -u

CVS commit: src/bin/pax

2023-07-20 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Thu Jul 20 20:10:59 UTC 2023 Modified Files: src/bin/pax: ar_io.c Log Message: pax: fix -Wformat for host tool To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/bin/pax/ar_io.c Please note that diffs are not

CVS commit: src/bin/pax

2023-07-20 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Thu Jul 20 20:10:59 UTC 2023 Modified Files: src/bin/pax: ar_io.c Log Message: pax: fix -Wformat for host tool To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/bin/pax/ar_io.c Please note that diffs are not

CVS commit: src/bin/pax

2023-07-20 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Thu Jul 20 20:09:49 UTC 2023 Modified Files: src/bin/pax: options.c Log Message: pax: need for ffs() Fixes warning as host tool on NetBSD 9.99 To generate a diff of this commit: cvs rdiff -u -r1.119 -r1.120

CVS commit: src/bin/pax

2023-07-20 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Thu Jul 20 20:09:49 UTC 2023 Modified Files: src/bin/pax: options.c Log Message: pax: need for ffs() Fixes warning as host tool on NetBSD 9.99 To generate a diff of this commit: cvs rdiff -u -r1.119 -r1.120

CVS commit: src/bin/sh

2023-06-23 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Sat Jun 24 05:17:02 UTC 2023 Modified Files: src/bin/sh: eval.c Log Message: Fix typo in a debug message. To generate a diff of this commit: cvs rdiff -u -r1.189 -r1.190 src/bin/sh/eval.c Please note that diffs are not public

CVS commit: src/bin/sh

2023-06-23 Thread SAITOH Masanobu
Module Name:src Committed By: msaitoh Date: Sat Jun 24 05:17:02 UTC 2023 Modified Files: src/bin/sh: eval.c Log Message: Fix typo in a debug message. To generate a diff of this commit: cvs rdiff -u -r1.189 -r1.190 src/bin/sh/eval.c Please note that diffs are not public

CVS commit: src/bin/date

2023-05-31 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Wed May 31 18:04:00 UTC 2023 Modified Files: src/bin/date: date.1 Log Message: date(1): sync two [CC]yy]mm]dd]HH]MM[.SS] instances The markup was the same (modulo Li vs Cm for the dot before the seconds), but use the same

CVS commit: src/bin/date

2023-05-31 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Wed May 31 18:04:00 UTC 2023 Modified Files: src/bin/date: date.1 Log Message: date(1): sync two [CC]yy]mm]dd]HH]MM[.SS] instances The markup was the same (modulo Li vs Cm for the dot before the seconds), but use the same

CVS commit: src/bin/date

2023-05-31 Thread Kimmo Suominen
Module Name:src Committed By: kim Date: Wed May 31 17:56:54 UTC 2023 Modified Files: src/bin/date: date.c Log Message: Add -R to usage To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 src/bin/date/date.c Please note that diffs are not public domain; they

CVS commit: src/bin/date

2023-05-31 Thread Kimmo Suominen
Module Name:src Committed By: kim Date: Wed May 31 17:56:54 UTC 2023 Modified Files: src/bin/date: date.c Log Message: Add -R to usage To generate a diff of this commit: cvs rdiff -u -r1.64 -r1.65 src/bin/date/date.c Please note that diffs are not public domain; they

CVS commit: src/bin/date

2023-05-31 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Wed May 31 17:52:02 UTC 2023 Modified Files: src/bin/date: date.1 Log Message: date(1): minor markup fixes To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/bin/date/date.1 Please note that diffs are not public

CVS commit: src/bin/date

2023-05-31 Thread Valery Ushakov
Module Name:src Committed By: uwe Date: Wed May 31 17:52:02 UTC 2023 Modified Files: src/bin/date: date.1 Log Message: date(1): minor markup fixes To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/bin/date/date.1 Please note that diffs are not public

CVS commit: src/bin/date

2023-05-31 Thread Kimmo Suominen
Module Name:src Committed By: kim Date: Wed May 31 16:01:53 UTC 2023 Modified Files: src/bin/date: date.1 date.c Log Message: Add -R option for displaying time in RFC 5322 format, similar to GNU date. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52

CVS commit: src/bin/date

2023-05-31 Thread Kimmo Suominen
Module Name:src Committed By: kim Date: Wed May 31 16:01:53 UTC 2023 Modified Files: src/bin/date: date.1 date.c Log Message: Add -R option for displaying time in RFC 5322 format, similar to GNU date. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52

CVS commit: src/bin/pax

2023-05-28 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Sun May 28 21:42:40 UTC 2023 Modified Files: src/bin/pax: ar_subs.c buf_subs.c extern.h file_subs.c Log Message: pax: don't overwrite destination if -r -w copy fails Add more error handling to pax -r -w so that any failure during

CVS commit: src/bin/pax

2023-05-28 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Sun May 28 21:42:40 UTC 2023 Modified Files: src/bin/pax: ar_subs.c buf_subs.c extern.h file_subs.c Log Message: pax: don't overwrite destination if -r -w copy fails Add more error handling to pax -r -w so that any failure during

CVS commit: src/bin/pax

2023-05-28 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Sun May 28 17:01:46 UTC 2023 Modified Files: src/bin/pax: ftree.c Log Message: pax: exit 0 if stdin filelist is used and empty If copying a list of files from stdin, exit zero instead of non-zero if there are no files supplied.

CVS commit: src/bin/pax

2023-05-28 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Sun May 28 17:01:46 UTC 2023 Modified Files: src/bin/pax: ftree.c Log Message: pax: exit 0 if stdin filelist is used and empty If copying a list of files from stdin, exit zero instead of non-zero if there are no files supplied.

CVS commit: src/bin/cat

2023-05-18 Thread Roland Illig
Module Name:src Committed By: rillig Date: Fri May 19 05:28:54 UTC 2023 Modified Files: src/bin/cat: cat.c Log Message: cat: fix misleading indentation Found by indent, but not by GCC 10. No binary change. To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58

CVS commit: src/bin/cat

2023-05-18 Thread Roland Illig
Module Name:src Committed By: rillig Date: Fri May 19 05:28:54 UTC 2023 Modified Files: src/bin/cat: cat.c Log Message: cat: fix misleading indentation Found by indent, but not by GCC 10. No binary change. To generate a diff of this commit: cvs rdiff -u -r1.57 -r1.58

CVS commit: src/bin/sh

2023-04-07 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Apr 7 10:42:28 UTC 2023 Modified Files: src/bin/sh: memalloc.c Log Message: Remove an end of file trailing blank line that served no purpose. NFCI To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39

CVS commit: src/bin/sh

2023-04-07 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Apr 7 10:42:28 UTC 2023 Modified Files: src/bin/sh: memalloc.c Log Message: Remove an end of file trailing blank line that served no purpose. NFCI To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39

CVS commit: src/bin/sh

2023-04-07 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Apr 7 10:34:13 UTC 2023 Modified Files: src/bin/sh: eval.c histedit.c jobs.c jobs.h main.c memalloc.c mktokens mystring.c output.c parser.c show.c src/bin/sh/funcs: dirs popd pushd Log Message: The great

CVS commit: src/bin/sh

2023-04-07 Thread Robert Elz
Module Name:src Committed By: kre Date: Fri Apr 7 10:34:13 UTC 2023 Modified Files: src/bin/sh: eval.c histedit.c jobs.c jobs.h main.c memalloc.c mktokens mystring.c output.c parser.c show.c src/bin/sh/funcs: dirs popd pushd Log Message: The great

CVS commit: src/bin/sh

2023-03-21 Thread Juergen Hannken-Illjes
Module Name:src Committed By: hannken Date: Tue Mar 21 08:31:30 UTC 2023 Modified Files: src/bin/sh: error.h Log Message: Use "sigjmp_buf loc" after switch to sigsetjmp()/siglongjmp(). Fixes errors and aborts on sparc at least. To generate a diff of this commit: cvs

CVS commit: src/bin/sh

2023-03-21 Thread Juergen Hannken-Illjes
Module Name:src Committed By: hannken Date: Tue Mar 21 08:31:30 UTC 2023 Modified Files: src/bin/sh: error.h Log Message: Use "sigjmp_buf loc" after switch to sigsetjmp()/siglongjmp(). Fixes errors and aborts on sparc at least. To generate a diff of this commit: cvs

CVS commit: src/bin/sh

2023-03-19 Thread Robert Elz
Module Name:src Committed By: kre Date: Sun Mar 19 17:55:57 UTC 2023 Modified Files: src/bin/sh: error.c exec.c Log Message: Do a better job handling EACCES errors from exec() calls. If the EACCES is from the namei(), treat it just like ENOENT or ENOTDIR (and if that is

CVS commit: src/bin/sh

2023-03-19 Thread Robert Elz
Module Name:src Committed By: kre Date: Sun Mar 19 17:55:57 UTC 2023 Modified Files: src/bin/sh: error.c exec.c Log Message: Do a better job handling EACCES errors from exec() calls. If the EACCES is from the namei(), treat it just like ENOENT or ENOTDIR (and if that is

CVS commit: src/bin/sh

2023-03-19 Thread Robert Elz
Module Name:src Committed By: kre Date: Sun Mar 19 17:47:48 UTC 2023 Modified Files: src/bin/sh: error.h Log Message: Switch from using _setjmp()/_longjmp() (on BSD systems which aren't SVR4) (and setjmp()/longjmp() elsewhere) to using sigsetjmp()/siglongjmp() everywhere.

CVS commit: src/bin/sh

2023-03-19 Thread Robert Elz
Module Name:src Committed By: kre Date: Sun Mar 19 17:47:48 UTC 2023 Modified Files: src/bin/sh: error.h Log Message: Switch from using _setjmp()/_longjmp() (on BSD systems which aren't SVR4) (and setjmp()/longjmp() elsewhere) to using sigsetjmp()/siglongjmp() everywhere.

CVS commit: src/bin/sh

2023-03-19 Thread Robert Elz
Module Name:src Committed By: kre Date: Sun Mar 19 17:45:30 UTC 2023 Modified Files: src/bin/sh: error.h Log Message: Change a few #defines from octal to hex (pdp11 days are long gone). Improve the layout of those definitions at the same time. NFC. To generate a diff

  1   2   3   4   5   6   >