]> granicus.if.org Git - fcron/blob - cl.c
install-restart: use service (works with systemd) instead of /etc/init.d/fcron
[fcron] / cl.c
1 /*
2  * FCRON - periodic command scheduler
3  *
4  *  Copyright 2000-2014 Thibault Godouet <fcron@free.fr>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  The GNU General Public License can also be found in the file
21  *  `LICENSE' that comes with the fcron source distribution.
22  */
23
24 #include "global.h"
25 #include "cl.h"
26 #include "mem.h"
27
28 cl_t *
29 dups_cl(cl_t * orig)
30     /* Duplicate a line, including the strings it points to. */
31 {
32     cl_t *cl = NULL;
33
34     Alloc(cl, cl_t);
35
36     /* copy the structure */
37     *cl = *orig;
38
39     /* don't assume any link to a file or belonging to a list */
40     cl->cl_file = NULL;
41     cl->cl_next = NULL;
42
43     /* we just copied the pointers of orig to cl, but we didn't
44      * make a copy of the strings yet.
45      * Reset the pointers, then copy the strings */
46     cl->cl_shell = NULL;
47     Set(cl->cl_shell, orig->cl_shell);
48
49     cl->cl_runas = NULL;
50     Set(cl->cl_runas, orig->cl_runas);
51     debug("%s: Set cl->cl_runas=%s", __func__,
52           (cl->cl_runas == NULL) ? "null" : cl->cl_runas);
53
54     cl->cl_mailfrom = NULL;
55     cl->cl_mailto = NULL;
56     Set(cl->cl_mailfrom, orig->cl_mailfrom);
57     Set(cl->cl_mailto, orig->cl_mailto);
58
59     cl->cl_tz = NULL;
60     Set(cl->cl_tz, orig->cl_tz);
61
62     return cl;
63 }
64
65 void
66 free_line(cl_t * cl)
67     /* free a line, including its fields */
68 {
69     if (cl != NULL) {
70         Free_safe(cl->cl_shell);
71         Free_safe(cl->cl_runas);
72         Free_safe(cl->cl_mailfrom);
73         Free_safe(cl->cl_mailto);
74         Free_safe(cl->cl_tz);
75         Free_safe(cl);
76     }
77 }