When we added the ARCHIVE option to triage_signals(), we ran up against a 256 character limit in readline() when asking for user prompts. So I've moved the user prompt into a cat() call to print that to the console, and then ask for user input with readline() following.
When we added the
ARCHIVE
option totriage_signals()
, we ran up against a 256 character limit inreadline()
when asking for user prompts. So I've moved the user prompt into acat()
call to print that to the console, and then ask for user input withreadline()
following.