Deleted Added
full compact
ctm_syntax.c (2971) ctm_syntax.c (8857)
1/*
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
1/*
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@login.dknet.dk> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
9 * $Id$
9 * $Id: ctm_syntax.c,v 1.4 1994/09/22 02:49:21 phk Exp $
10 *
11 */
12
13#include "ctm.h"
14
15/* The fields... */
16#define Name CTM_F_Name
17#define Uid CTM_F_Uid

--- 8 unchanged lines hidden (view full) ---

26#define Dir CTM_Q_Name_Dir
27#define New CTM_Q_Name_New
28#define After CTM_Q_MD5_After
29#define Before CTM_Q_MD5_Before
30#define Chunk CTM_Q_MD5_Chunk
31#define Force CTM_Q_MD5_Force
32
33static int ctmFM[] = /* File Make */
10 *
11 */
12
13#include "ctm.h"
14
15/* The fields... */
16#define Name CTM_F_Name
17#define Uid CTM_F_Uid

--- 8 unchanged lines hidden (view full) ---

26#define Dir CTM_Q_Name_Dir
27#define New CTM_Q_Name_New
28#define After CTM_Q_MD5_After
29#define Before CTM_Q_MD5_Before
30#define Chunk CTM_Q_MD5_Chunk
31#define Force CTM_Q_MD5_Force
32
33static int ctmFM[] = /* File Make */
34 { Name|File|New, Uid, Gid, Mode,
34 { Name|File|New, Uid, Gid, Mode,
35 MD5|After|Chunk, Count, Bytes,0 };
36
37static int ctmFS[] = /* File Substitute */
35 MD5|After|Chunk, Count, Bytes,0 };
36
37static int ctmFS[] = /* File Substitute */
38 { Name|File, Uid, Gid, Mode,
38 { Name|File, Uid, Gid, Mode,
39 MD5|Before|Force, MD5|After|Chunk, Count, Bytes,0 };
40
41static int ctmFE[] = /* File Edit */
39 MD5|Before|Force, MD5|After|Chunk, Count, Bytes,0 };
40
41static int ctmFE[] = /* File Edit */
42 { Name|File, Uid, Gid, Mode,
42 { Name|File, Uid, Gid, Mode,
43 MD5|Before, MD5|After, Count, Bytes,0 };
44
45static int ctmFR[] = /* File Remove */
46 { Name|File, MD5|Before, 0 };
47
48static int ctmAS[] = /* Attribute Substitute */
49 { Name, Uid, Gid, Mode, 0 };
50

--- 16 unchanged lines hidden ---
43 MD5|Before, MD5|After, Count, Bytes,0 };
44
45static int ctmFR[] = /* File Remove */
46 { Name|File, MD5|Before, 0 };
47
48static int ctmAS[] = /* Attribute Substitute */
49 { Name, Uid, Gid, Mode, 0 };
50

--- 16 unchanged lines hidden ---