summaryrefslogtreecommitdiff
path: root/appl/cmd/auth/keysrv.b
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2008-01-16 13:39:58 +0000
committerCharles.Forsyth <devnull@localhost>2008-01-16 13:39:58 +0000
commit3f1f06c5d12b24c4061e5123acabf72348ff45a2 (patch)
treed40487b0f5d3a46c5e1cefe288f9a74b8494d9a7 /appl/cmd/auth/keysrv.b
parentca1042d3d05e5e9b2b5094b04197c96ec3b34bfe (diff)
20080116-1340
Diffstat (limited to 'appl/cmd/auth/keysrv.b')
-rw-r--r--appl/cmd/auth/keysrv.b4
1 files changed, 2 insertions, 2 deletions
diff --git a/appl/cmd/auth/keysrv.b b/appl/cmd/auth/keysrv.b
index c7144256..fb0bd9d7 100644
--- a/appl/cmd/auth/keysrv.b
+++ b/appl/cmd/auth/keysrv.b
@@ -116,7 +116,7 @@ worker(file: ref Sys->FileIO, user: string, exitc: chan of int)
for(;;)alt{
<-exitc =>
exit;
- (nil, nbytes, fid, rc) := <-file.read =>
+ (nil, nil, nil, rc) := <-file.read =>
if(rc == nil)
break;
if(err != nil){
@@ -124,7 +124,7 @@ worker(file: ref Sys->FileIO, user: string, exitc: chan of int)
break;
}
rc <-= (nil, nil);
- (nil, data, fid, wc) := <-file.write =>
+ (nil, data, nil, wc) := <-file.write =>
if(wc == nil)
break;
if(err != nil){