hgfs: format hashes in ther full length

This commit is contained in:
cinap_lenrek 2011-10-16 00:46:09 +02:00
parent 403dee333e
commit 00c461fa18

View file

@ -10,12 +10,11 @@
int int
Hfmt(Fmt *f) Hfmt(Fmt *f)
{ {
uchar *p; uchar *p, *e;
for(p = va_arg(f->args, uchar*), e = p + HASHSZ; p != e; p++)
p = va_arg(f->args, uchar*); if(fmtprint(f, "%.2x", *p) < 0)
return fmtprint(f, return -1;
"%.2x%.2x%.2x%.2x%.2x%.2x", return 0;
p[0], p[1], p[2], p[3], p[4], p[5]);
} }
int int