Re: CVS commit: src/usr.bin/audiocfg

2019-08-24 Thread Tetsuya Isaki
At Sat, 24 Aug 2019 16:28:39 +1000, matthew green wrote: > > Log Message: > > Use device unit number for index. > > The index number was too confusing such as > > 0: [ ] audio1 @ wss0 > > 1: [*] audio0 @ yds0 > > in my PC for example. Here is new format: > > [*] audio0 @ yds0 > > [ ] audio1 @

re: CVS commit: src/usr.bin/audiocfg

2019-08-23 Thread matthew green
"Tetsuya Isaki" writes: > Module Name: src > Committed By: isaki > Date: Sat Aug 24 05:45:25 UTC 2019 > > Modified Files: > src/usr.bin/audiocfg: audiodev.c audiodev.h main.c > > Log Message: > Use device unit number for index. > The index number was too confusing such as > 0: [ ]

Re: CVS commit: src/usr.bin/audiocfg

2010-10-24 Thread Christos Zoulas
On Oct 24, 11:09pm, dholland-sourcechan...@netbsd.org (David Holland) wrote: -- Subject: Re: CVS commit: src/usr.bin/audiocfg | On Mon, Sep 13, 2010 at 01:32:38PM +1000, matthew green wrote: | >>>> Should we make perror() produce a warning so people will stop using it? | >>>

Re: CVS commit: src/usr.bin/audiocfg

2010-10-24 Thread David Holland
On Mon, Sep 13, 2010 at 01:32:38PM +1000, matthew green wrote: Should we make perror() produce a warning so people will stop using it? >>> >>> No, as it is not a NetBSD specific API. >> >> Neither is gets() > > using perror() doesn't lead to fatal security flaws. > > i don't see an

Re: CVS commit: src/usr.bin/audiocfg

2010-09-13 Thread Christos Zoulas
On Sep 12, 11:45pm, t...@zhadum.org.uk (Matthias Scheler) wrote: -- Subject: Re: CVS commit: src/usr.bin/audiocfg | On 11 Sep 2010, at 23:44, Christos Zoulas wrote: | | Well, but gets() is clearly broken by design, perror(3) isn't. And the obvi= | ous replacement for gets(3) is fgets(3) whi

re: CVS commit: src/usr.bin/audiocfg

2010-09-12 Thread matthew green
> In article <5217ce1f-57c2-40bc-9281-50f90bba0...@zhadum.org.uk>, > Matthias Scheler wrote: > > > >On 6 Sep 2010, at 23:35, Christos Zoulas wrote: > >> Should we make perror() produce a warning so people will stop using it? > > > >No, as it is not a NetBSD specific API. > > Neither is gets()

Re: CVS commit: src/usr.bin/audiocfg

2010-09-12 Thread Matthias Scheler
On 11 Sep 2010, at 23:44, Christos Zoulas wrote: > In article <5217ce1f-57c2-40bc-9281-50f90bba0...@zhadum.org.uk>, > Matthias Scheler wrote: >> >> On 6 Sep 2010, at 23:35, Christos Zoulas wrote: >>> Should we make perror() produce a warning so people will stop using it? >> >> No, as it is no

Re: CVS commit: src/usr.bin/audiocfg

2010-09-11 Thread Christos Zoulas
In article <5217ce1f-57c2-40bc-9281-50f90bba0...@zhadum.org.uk>, Matthias Scheler wrote: > >On 6 Sep 2010, at 23:35, Christos Zoulas wrote: >> Should we make perror() produce a warning so people will stop using it? > >No, as it is not a NetBSD specific API. Neither is gets() christos

Re: CVS commit: src/usr.bin/audiocfg

2010-09-11 Thread Matthias Scheler
On 6 Sep 2010, at 23:35, Christos Zoulas wrote: > Should we make perror() produce a warning so people will stop using it? No, as it is not a NetBSD specific API. Kind regards -- Matthias Scheler http://zhadum.org.uk/

Re: CVS commit: src/usr.bin/audiocfg

2010-09-06 Thread Christos Zoulas
In article <20100903192037.c6aa517...@cvs.netbsd.org>, Jared D. McNeill wrote: [...] > if (wlen > buflen) > wlen = buflen; >- write(adev->fd, (char *)buf + off, wlen); >+ wlen = write(adev->fd, (char *)buf + off, wlen); >+