X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/0e7106da702d97e10f3bd24d8284a2ab86044ebd..eee44c467bf31f198c73a51cab2f7e9d5a2ad47c:/sbr/context_save.c?ds=inline diff --git a/sbr/context_save.c b/sbr/context_save.c index 36b1634e..33cd23dd 100644 --- a/sbr/context_save.c +++ b/sbr/context_save.c @@ -2,8 +2,6 @@ /* * context_save.c -- write out the updated context file * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -43,7 +41,7 @@ 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"))) adios (ctxpath, "unable to write"); @@ -52,7 +50,7 @@ context_save (void) fprintf (out, "%s: %s\n", np->n_name, np->n_field); lkfclose (out, ctxpath); - SIGPROCMASK (SIG_SETMASK, &oset, &set); /* reset the signal mask */ + sigprocmask (SIG_SETMASK, &oset, &set); /* reset the signal mask */ if (action == 0) _exit (0); /* we are child, time to die */