tfix -d from lucho - plan9port - [fork] Plan 9 from user space
HTML git clone git://src.adamsgaard.dk/plan9port
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 3e1960ce9ea541b4bb70509c7b1915e88bfe69ed
DIR parent 53e2a4c62e0662d3b72bd0f8807f7b2459684ae1
HTML Author: rsc <devnull@localhost>
Date: Fri, 18 Feb 2005 18:28:00 +0000
fix -d from lucho
Diffstat:
M src/cmd/vac/vac.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/src/cmd/vac/vac.c b/src/cmd/vac/vac.c
t@@ -474,7 +474,7 @@ sha1check(u8int *score, uchar *buf, int n)
{
char score2[VtScoreSize];
- sha1(buf, n, score, nil);
+ sha1(buf, n, score2, nil);
if(memcmp(score, score2, VtScoreSize) == 0)
return 0;
return -1;
t@@ -567,7 +567,7 @@ if(0) fprint(2, "vacData: %s: %ld\n", lname, block);
warn("file truncated due to read error: %s: %r", lname);
if(n <= 0)
break;
- if(vf != nil && vacfileblockscore(vf, block, score) && sha1check(score, buf, n)>=0) {
+ if(vf != nil && vacfileblockscore(vf, block, score)>=0 && sha1check(score, buf, n)>=0) {
stats.sdata++;
sinkwritescore(sink, score, n);
} else