X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fcontext_save.c;h=4fa60ea4ddb4e32f0aa517dfd546da19bad65c13;hb=e79165e0c2c80b68ece9aaf418a59c6a169a17f5;hp=b3f8168bed12c7ec6d6f9ee940c577166c02011f;hpb=1691e80890e5d8ba258c51c214a3e91880e1db2b;p=mmh diff --git a/sbr/context_save.c b/sbr/context_save.c index b3f8168..4fa60ea 100644 --- a/sbr/context_save.c +++ b/sbr/context_save.c @@ -3,6 +3,10 @@ * 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. */ #include @@ -37,12 +41,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 */