summaryrefslogtreecommitdiff
path: root/appl/cmd/auth/factotum/rpc.b
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2008-01-16 01:19:38 +0000
committerCharles.Forsyth <devnull@localhost>2008-01-16 01:19:38 +0000
commitca1042d3d05e5e9b2b5094b04197c96ec3b34bfe (patch)
tree6a2cb733509e5a3692efa952e1c3bc5503c25355 /appl/cmd/auth/factotum/rpc.b
parente84ac69296d2bd901d9d5dba59a1873fc6fb7cc1 (diff)
20080116-0125
Diffstat (limited to 'appl/cmd/auth/factotum/rpc.b')
-rw-r--r--appl/cmd/auth/factotum/rpc.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/cmd/auth/factotum/rpc.b b/appl/cmd/auth/factotum/rpc.b
index 220980a8..5d76c2be 100644
--- a/appl/cmd/auth/factotum/rpc.b
+++ b/appl/cmd/auth/factotum/rpc.b
@@ -58,7 +58,7 @@ rpc(f: ref Sys->FD, addr: string)
b := array of byte addr;
if(sys->write(f, b, len b) > 0){
sys->seek(f, big 0, Sys->SEEKSTART);
- buf := array[256] of byte;
+ buf := array[4096+3] of byte;
if((n := sys->read(f, buf, len buf)) > 0)
sys->print("%s\n", string buf[0:n]);
if(n >= 0)