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
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
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,