summaryrefslogtreecommitdiff
path: root/appl/cmd/auth/secstore.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/cmd/auth/secstore.b')
-rw-r--r--appl/cmd/auth/secstore.b6
1 files changed, 3 insertions, 3 deletions
diff --git a/appl/cmd/auth/secstore.b b/appl/cmd/auth/secstore.b
index 9cb731ee..e26e132d 100644
--- a/appl/cmd/auth/secstore.b
+++ b/appl/cmd/auth/secstore.b
@@ -29,7 +29,7 @@ Secstorec: module
Maxfilesize: con 128*1024;
stderr: ref Sys->FD;
-conn: ref Sys->Connection;
+conn: ref Dial->Connection;
seckey: array of byte;
filekey: array of byte;
file: array of byte;
@@ -100,7 +100,7 @@ init(nil: ref Draw->Context, args: list of string)
if(nf > 1)
pin = hd tl flds;
}
- conn: ref Sys->Connection;
+ conn: ref Dial->Connection;
Auth:
for(;;){
if(!iflag)
@@ -229,7 +229,7 @@ verb(op: int, n: string)
sys->fprint(stderr, "%c %q\n", op, n);
}
-getfile(conn: ref Sys->Connection, fname: string, key: array of byte): array of byte
+getfile(conn: ref Dial->Connection, fname: string, key: array of byte): array of byte
{
f := secstore->getfile(conn, fname, 0);
if(f == nil)