Differences From Artifact [3aad9c8de5]:
- File src/manifest.c — part of check-in [5b58559c0c] at 2007-07-31 20:53:10 on branch trunk — Bug fix in the mlink table builder. Use the "rebuild" method to correct the problem in preexisting repositories. (user: drh size: 10741)
To Artifact [29068b9f31]:
- File src/manifest.c — part of check-in [e37451d9c2] at 2007-08-01 21:59:38 on branch trunk — Add the ability to sign manifests using GPG during a check-in. Due to a bug in the manifest parser, older versions will not be able to check-out signed manifests. (user: drh size: 10771)
| ︙ | |||
94 95 96 97 98 99 100 101 102 103 104 105 106 107 | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | + |
goto manifest_syntax_error;
}
if( seenHeader ){
break;
}
while( blob_line(pContent, &line)>1 ){}
if( blob_line(pContent, &line)==0 ) break;
z = blob_buffer(&line);
}
seenHeader = 1;
if( blob_token(&line, &token)!=1 ) goto manifest_syntax_error;
if( z[0]=='F' ){
char *zName, *zUuid;
md5sum_step_text(blob_buffer(&line), blob_size(&line)+1);
if( blob_token(&line, &a1)==0 ) goto manifest_syntax_error;
|
| ︙ |