X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcontext_save.c;h=4ee40ca81d9dae4b6749e18d252a0d5457ad6caa;hb=128545e06224233b7e91fc4c83f8830252fe16c9;hp=58d174516bd916687fabf3def67fc5d42be5d5dc;hpb=6c42153ad9362cc676ea66563bf400d7511b3b68;p=mmh diff --git a/sbr/context_save.c b/sbr/context_save.c index 58d1745..4ee40ca 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. @@ -25,6 +23,10 @@ context_save (void) register struct node *np; FILE *out; sigset_t set, oset; + + /* No context in use -- silently ignore any changes! */ + if (!ctxpath) + return; if (!(ctxflags & CTXMOD)) return; @@ -41,12 +43,12 @@ context_save (void) sigaddset (&set, SIGTERM); SIGPROCMASK (SIG_BLOCK, &set, &oset); - if (!(out = fopen (ctxpath, "w"))) + if (!(out = lkfopen (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); - fclose (out); + lkfclose (out, ctxpath); SIGPROCMASK (SIG_SETMASK, &oset, &set); /* reset the signal mask */