Differences From Artifact [a9d149a1c8]:
- File src/manifest.c — part of check-in [6823912746] at 2012-06-27 12:30:48 on branch sqlite4 — Begin a branch that is modified to use sqlite4 instead of sqlite3 as the storage engine. This check-in compiles (on unix) but does not work. (user: drh size: 63250)
To Artifact [0ca44821f7]:
- File src/manifest.c — part of check-in [0315f3f03b] at 2012-06-29 15:47:46 on branch sqlite4 — Merge in the trunk changes. (user: drh size: 63292) [more...]
| ︙ | |||
972 973 974 975 976 977 978 979 980 981 982 983 984 985 | 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 | + |
}
blob_read_from_file(&b, g.argv[2]);
if( g.argc>3 ) n = atoi(g.argv[3]);
for(i=0; i<n; i++){
Blob b2;
blob_copy(&b2, &b);
p = manifest_parse(&b2, 0);
if( p==0 ) fossil_print("FAILED!\n");
manifest_destroy(p);
}
}
/*
** Fetch the baseline associated with the delta-manifest p.
** Return 0 on success. If unable to parse the baseline,
|
| ︙ |