audioctl: incorrect initialization of variable fields

2012-07-24 Thread David Julio
When u_int oldval was added to struct field, the initialization of struct field fields[] became incorrect. Example: # audioctl play.seek=10 play.seek: 0 -> 0 Expected: # audioctl play.seek=10 audioctl: `play.seek' is read only Thank you for your time. --- audioctl.c.orig Tue Jul 24 11:56:21

Re: Incorrect exit status from which(1)/whereis(1)

2011-02-15 Thread David Julio
On Tue, Feb 15, 2011 at 5:30 PM, Jason McIntyre wrote: > On Mon, Feb 14, 2011 at 11:31:18AM +0000, David Julio wrote: >> Is the exit status of which(1)/whereis(1) correct? >> >> $ which a b c >> which: a: Command not found >> which: b: Command not found >> w

Incorrect exit status from which(1)/whereis(1)

2011-02-14 Thread David Julio
Is the exit status of which(1)/whereis(1) correct? $ which a b c which: a: Command not found which: b: Command not found which: c: Command not found $ echo $? 2 $ which -a a b c which: a: Command not found which: b: Command not found which: c: Command not found $ echo $? 1 If it is incorrect,