X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcontext_save.c;h=d1371d017afc4b91f1ca25817f84f725a9c477b4;hp=1a381db2b30cdb01f0d1f4b9512ea495c04cb1a5;hb=ac0b9fcce4167e2959ebc5b8d6efb8511acec66d;hpb=fc71710f8695ea07d852284286b058ecb3955317 diff --git a/sbr/context_save.c b/sbr/context_save.c index 1a381db..d1371d0 100644 --- a/sbr/context_save.c +++ b/sbr/context_save.c @@ -40,7 +40,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"); @@ -49,7 +49,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 */