CVS commit: src/usr.bin/audio/record

2024-03-20 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Mar 20 20:19:31 UTC 2024 Modified Files: src/usr.bin/audio/record: record.c Log Message: match message & conversion function name properly. probably should make this into an array with two members. To generate a diff of this

CVS commit: src/usr.bin/audio/record

2024-03-20 Thread matthew green
Module Name:src Committed By: mrg Date: Wed Mar 20 20:19:31 UTC 2024 Modified Files: src/usr.bin/audio/record: record.c Log Message: match message & conversion function name properly. probably should make this into an array with two members. To generate a diff of this

CVS commit: src/usr.bin/audio/record

2022-01-08 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Jan 9 06:33:13 UTC 2022 Modified Files: src/usr.bin/audio/record: record.c Log Message: Let user gracefully abort recording with SIGINT. To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56

CVS commit: src/usr.bin/audio/record

2022-01-08 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Jan 9 06:33:13 UTC 2022 Modified Files: src/usr.bin/audio/record: record.c Log Message: Let user gracefully abort recording with SIGINT. To generate a diff of this commit: cvs rdiff -u -r1.55 -r1.56

CVS commit: src/usr.bin/audio/record

2021-06-01 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Tue Jun 1 21:08:48 UTC 2021 Modified Files: src/usr.bin/audio/record: record.c Log Message: audiorecord(1): Handle read(2) return value gracefully. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55

CVS commit: src/usr.bin/audio/record

2021-06-01 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Tue Jun 1 21:08:48 UTC 2021 Modified Files: src/usr.bin/audio/record: record.c Log Message: audiorecord(1): Handle read(2) return value gracefully. To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55

CVS commit: src/usr.bin/audio/record

2021-03-25 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 25 10:03:26 UTC 2021 Modified Files: src/usr.bin/audio/record: audiorecord.1 Log Message: Add an example for recording CD quality audio To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44

CVS commit: src/usr.bin/audio/record

2021-03-25 Thread Nia Alarie
Module Name:src Committed By: nia Date: Thu Mar 25 10:03:26 UTC 2021 Modified Files: src/usr.bin/audio/record: audiorecord.1 Log Message: Add an example for recording CD quality audio To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44

CVS commit: src/usr.bin/audio/record

2020-01-30 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Fri Jan 31 00:21:53 UTC 2020 Modified Files: src/usr.bin/audio/record: audiorecord.1 Log Message: audioamd is in the SPARC port To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/usr.bin/audio/record/audiorecord.1

CVS commit: src/usr.bin/audio/record

2020-01-30 Thread Sevan Janiyan
Module Name:src Committed By: sevan Date: Fri Jan 31 00:21:53 UTC 2020 Modified Files: src/usr.bin/audio/record: audiorecord.1 Log Message: audioamd is in the SPARC port To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/usr.bin/audio/record/audiorecord.1

Re: CVS commit: src/usr.bin/audio/record

2011-09-22 Thread Marc Balmer
Am 21.09.2011 um 16:32 schrieb Christos Zoulas: Module Name: src Committed By: christos Date: Wed Sep 21 14:32:14 UTC 2011 Modified Files: src/usr.bin/audio/record: record.c Log Message: PR/45384: Henning Petersen: Swapped arguments in lseek To generate a diff of

Re: CVS commit: src/usr.bin/audio/record

2011-09-22 Thread Christos Zoulas
In article dbe1242c-f99e-4b75-b356-516245aca...@msys.ch, Marc Balmer m...@msys.ch wrote: if (outfd == STDOUT_FILENO) return; -if (lseek(outfd, SEEK_SET, 0) 0) +if (lseek(outfd, (off_t)0, SEEK_SET) == (off_t)-1) err(1, could not seek to start of file

Re: CVS commit: src/usr.bin/audio/record

2011-09-22 Thread Marc Balmer
Am 22.09.2011 um 19:34 schrieb Christos Zoulas: In article dbe1242c-f99e-4b75-b356-516245aca...@msys.ch, Marc Balmer m...@msys.ch wrote: if (outfd == STDOUT_FILENO) return; - if (lseek(outfd, SEEK_SET, 0) 0) + if (lseek(outfd, (off_t)0, SEEK_SET) == (off_t)-1)

Re: CVS commit: src/usr.bin/audio/record

2011-09-22 Thread David Laight
On Thu, Sep 22, 2011 at 09:28:56PM +0200, Marc Balmer wrote: Am 22.09.2011 um 19:34 schrieb Christos Zoulas: In article dbe1242c-f99e-4b75-b356-516245aca...@msys.ch, Marc Balmer m...@msys.ch wrote: if (outfd == STDOUT_FILENO) return; - if (lseek(outfd, SEEK_SET, 0)

CVS commit: src/usr.bin/audio/record

2011-09-21 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Sep 21 14:32:14 UTC 2011 Modified Files: src/usr.bin/audio/record: record.c Log Message: PR/45384: Henning Petersen: Swapped arguments in lseek To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52

CVS commit: src/usr.bin/audio/record

2011-09-21 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Wed Sep 21 14:32:14 UTC 2011 Modified Files: src/usr.bin/audio/record: record.c Log Message: PR/45384: Henning Petersen: Swapped arguments in lseek To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52

CVS commit: src/usr.bin/audio/record

2010-12-29 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Wed Dec 29 18:49:41 UTC 2010 Modified Files: src/usr.bin/audio/record: record.c Log Message: Sort usage. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 src/usr.bin/audio/record/record.c Please note that diffs are

CVS commit: src/usr.bin/audio/record

2010-12-29 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Wed Dec 29 18:49:41 UTC 2010 Modified Files: src/usr.bin/audio/record: record.c Log Message: Sort usage. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.50 src/usr.bin/audio/record/record.c Please note that diffs are

CVS commit: src/usr.bin/audio/record

2009-07-01 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jul 2 04:45:28 UTC 2009 Modified Files: src/usr.bin/audio/record: audiorecord.1 Log Message: note that -t can take [.dd]. sort -q. from dhgutteri...@sympatico.ca in PR#36928. To generate a diff of this commit: cvs rdiff