Unverified Commit 76f61234 by Tycho Andersen Committed by Christian Brauner

set exit status to 1 in the unknown si_code case

parent cc00cc56
...@@ -332,6 +332,7 @@ static int signal_handler(int fd, uint32_t events, void *data, ...@@ -332,6 +332,7 @@ static int signal_handler(int fd, uint32_t events, void *data,
break; break;
default: default:
ERROR("Unknown si_code: %d", hdlr->init_died); ERROR("Unknown si_code: %d", hdlr->init_died);
hdlr->exit_status = 1;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment