]>
diplodocus.org Git - nmh/blob - sbr/context_save.c
1 /* context_save.c -- write out the updated context file
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
9 * This function used to support setuid/setgid programs by writing
10 * the file as the user. But that code, m_chkids(), was removed
11 * because there no longer are setuid/setgid programs in nmh.
15 #include <h/signals.h>
16 #include "lock_file.h"
24 int failed_to_lock
= 0;
26 /* No context in use -- silently ignore any changes! */
30 if (!(ctxflags
& CTXMOD
))
34 /* block a few signals */
36 sigaddset (&set
, SIGHUP
);
37 sigaddset (&set
, SIGINT
);
38 sigaddset (&set
, SIGQUIT
);
39 sigaddset (&set
, SIGTERM
);
40 sigprocmask (SIG_BLOCK
, &set
, &oset
);
42 if (!(out
= lkfopendata (ctxpath
, "w", &failed_to_lock
))) {
44 adios (ctxpath
, "failed to lock");
45 adios (ctxpath
, "unable to write");
47 for (np
= m_defs
; np
; np
= np
->n_next
)
49 fprintf (out
, "%s: %s\n", np
->n_name
, np
->n_field
);
50 lkfclosedata (out
, ctxpath
);
52 sigprocmask (SIG_SETMASK
, &oset
, &set
); /* reset the signal mask */