60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
-
+
+
-
+
|
*/
static const struct {
const char *fname;
int flg;
}aManifestflags[] = {
{ "manifest", MFESTFLG_RAW },
{ "manifest.uuid", MFESTFLG_UUID },
{ "manifest.tags", MFESTFLG_TAGS }
{ "manifest.tags", MFESTFLG_TAGS },
{ "manifest.descr", MFESTFLG_DESCR }
};
static const char *azManifests[3];
static const char *azManifests[4];
/*
** Names of repository files, if they exist in the checkout.
*/
static const char *azRepo[4] = { 0, 0, 0, 0 };
/* Cached setting "manifest" */
|