Differences From Artifact [5f7f55a1e7]:
- File src/md5.c — part of check-in [df5a8bf0d4] at 2010-10-23 14:19:05 on branch experimental — MD5 optimization for x86_64. (user: drh size: 13640) [more...]
To Artifact [96dfb77e4d]:
- File src/md5.c — part of check-in [e805fa8db9] at 2011-04-27 18:21:51 on branch windows-i18n — Attempt to get Fossil working on windows systems that do not use UTF8 in the shell. (user: drh size: 13646)
| ︙ | |||
436 437 438 439 440 441 442 | 436 437 438 439 440 441 442 443 444 445 446 | - + |
for(i=2; i<g.argc; i++){
if( g.argv[i][0]=='-' && g.argv[i][1]==0 ){
blob_read_from_channel(&in, stdin, -1);
md5sum_blob(&in, &cksum);
}else{
md5sum_file(g.argv[i], &cksum);
}
|