If it fails, we'd submit the errno to supervisor via sd_notify() later.
goto finish;
}
- if (mac_init() < 0) {
+ r = mac_init();
+ if (r < 0) {
error_message = "Failed to initialize MAC support";
goto finish;
}
/* clear the kernel timestamp, because we are not PID 1 */
kernel_timestamp = DUAL_TIMESTAMP_NULL;
- if (mac_init() < 0) {
+ r = mac_init();
+ if (r < 0) {
error_message = "Failed to initialize MAC support";
goto finish;
}