Merge pull request #226 from rtczza/main

debug_return_int use error
This commit is contained in:
Todd C. Miller
2022-12-22 19:59:02 -07:00
committed by GitHub

View File

@@ -1167,7 +1167,7 @@ exec_pty(struct command_details *details, struct command_status *cstat)
/* Check for early termination or suspend signals before we fork. */
if (sudo_terminated(cstat)) {
sigprocmask(SIG_SETMASK, &oset, NULL);
debug_return_int(true);
debug_return_bool(true);
}
ec.monitor_pid = sudo_debug_fork();