diff options
author | rsc <devnull@localhost> | 2007-03-26 15:03:34 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2007-03-26 15:03:34 +0000 |
commit | 96dada90ef06575c4cb3c4721ac71a6340e976ca (patch) | |
tree | 36ab9b07f9cfdc7cd1b2d5f92e3286c905c3c470 /src | |
parent | 40402738daf5ef541ffa358c17c5afc69a9d0c5e (diff) | |
download | plan9port-96dada90ef06575c4cb3c4721ac71a6340e976ca.tar.gz plan9port-96dada90ef06575c4cb3c4721ac71a6340e976ca.tar.bz2 plan9port-96dada90ef06575c4cb3c4721ac71a6340e976ca.zip |
pad out zmagic to 32+ bytes
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd/venti/srv/zblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/venti/srv/zblock.c b/src/cmd/venti/srv/zblock.c index 4cc96dd4..5d9bb3d9 100644 --- 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) |