X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5dd6771b28c257af405d7248639ed0e3bcdce38b..439ee6eac80d0e1f7efb882ccc44906b20730d20:/sbr/context_save.c?ds=sidebyside diff --git a/sbr/context_save.c b/sbr/context_save.c index 4ee40ca8..9105a596 100644 --- a/sbr/context_save.c +++ b/sbr/context_save.c @@ -41,18 +41,20 @@ context_save (void) sigaddset (&set, SIGINT); sigaddset (&set, SIGQUIT); sigaddset (&set, SIGTERM); - SIGPROCMASK (SIG_BLOCK, &set, &oset); + sigprocmask (SIG_BLOCK, &set, &oset); - if (!(out = lkfopen (ctxpath, "w"))) + if (!(out = lkfopendata (ctxpath, "w"))) adios (ctxpath, "unable to write"); for (np = m_defs; np; np = np->n_next) if (np->n_context) fprintf (out, "%s: %s\n", np->n_name, np->n_field); - lkfclose (out, ctxpath); + lkfclosedata (out, ctxpath); - SIGPROCMASK (SIG_SETMASK, &oset, &set); /* reset the signal mask */ + sigprocmask (SIG_SETMASK, &oset, &set); /* reset the signal mask */ if (action == 0) + /* This must be _exit(), not exit(), because the child didn't + call unregister_for_removal() in m_chkids(). */ _exit (0); /* we are child, time to die */ } @@ -83,8 +85,8 @@ m_chkids (void) break; case 0: - setgid (getgid ()); - setuid (getuid ()); + /* It's not necessary to call unregister_for_removal(0) + because the child calls _exit() in context_save(). */ break; default: