]> granicus.if.org Git - fcron/blob - cl.c
Updated to-do list
[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_mailto = NULL;
55     Set(cl->cl_mailto, orig->cl_mailto);
56
57     cl->cl_tz = NULL;
58     Set(cl->cl_tz, orig->cl_tz);
59
60     return cl;
61 }
62
63 void
64 free_line(cl_t * cl)
65     /* free a line, including its fields */
66 {
67     if (cl != NULL) {
68         Free_safe(cl->cl_shell);
69         Free_safe(cl->cl_runas);
70         Free_safe(cl->cl_mailto);
71         Free_safe(cl->cl_tz);
72         Free_safe(cl);
73     }
74 }