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