CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/07/02 13:00:35
Modified files:
usr.bin/timeout: timeout.c
Log message:
Make -s accept HUP like kill(1) and GNU timeout(1) do
timeout.c's parse_signal() basically does what kill.c's signame_to_num()
does, except it expects "SIG" in string signals.
Borrow the isalpha() check from kill.c to get the same behaviour.
OK deraadt
