commit 96dada90ef06575c4cb3c4721ac71a6340e976ca
parent 40402738daf5ef541ffa358c17c5afc69a9d0c5e
Author: rsc <devnull@localhost>
Date: Mon, 26 Mar 2007 15:03:34 +0000
pad out zmagic to 32+ bytes
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/cmd/venti/srv/zblock.c b/src/cmd/venti/srv/zblock.c
@@ -14,7 +14,7 @@ fmtzbinit(Fmt *f, ZBlock *b)
#define ROUNDUP(p, n) ((void*)(((uintptr)(p)+(n)-1)&~(uintptr)((n)-1)))
-static char zmagic[] = "1234567890abcdefghijkl";
+static char zmagic[] = "1234567890abcdefghijklmnopqrstuvxyz";
ZBlock *
alloczblock(u32int size, int zeroed, uint blocksize)