diff options
author | Russ Cox <rsc@swtch.com> | 2009-05-25 00:30:17 -0700 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2009-05-25 00:30:17 -0700 |
commit | 33b446b8bbfea80552d462296d27ad4114fbd3fb (patch) | |
tree | a8f7043166974ce39152147fff99b97140027656 /include | |
parent | 9cac97f2c55efc9ffa9b3894127e049cc25852a3 (diff) | |
download | plan9port-33b446b8bbfea80552d462296d27ad4114fbd3fb.tar.gz plan9port-33b446b8bbfea80552d462296d27ad4114fbd3fb.tar.bz2 plan9port-33b446b8bbfea80552d462296d27ad4114fbd3fb.zip |
libventi: protocol support for blocks larger than 64k
Diffstat (limited to 'include')
-rw-r--r-- | include/venti.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/venti.h b/include/venti.h index 8a64c57e..14627dcb 100644 --- a/include/venti.h +++ b/include/venti.h @@ -292,7 +292,7 @@ struct VtFcall uint nauth; /* TauthX, RauthX */ uchar score[VtScoreSize]; /* Tread, Rwrite */ uchar blocktype; /* Tread, Twrite */ - ushort count; /* Tread */ + uint count; /* Tread */ Packet *data; /* Rread, Twrite */ }; |