diff options
author | rsc <devnull@localhost> | 2005-02-11 22:04:12 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-02-11 22:04:12 +0000 |
commit | ba285d2ba998955026aea9227b3b9329a5f83e38 (patch) | |
tree | 3fcf3530c4487b08839a4f1f3e3b9738faef5306 /src/libauth | |
parent | f93c7b2dc81603960e32568befcbc63679ba91aa (diff) | |
download | plan9port-ba285d2ba998955026aea9227b3b9329a5f83e38.tar.gz plan9port-ba285d2ba998955026aea9227b3b9329a5f83e38.tar.bz2 plan9port-ba285d2ba998955026aea9227b3b9329a5f83e38.zip |
open correct factotum file
Diffstat (limited to 'src/libauth')
-rw-r--r-- | src/libauth/auth_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libauth/auth_rpc.c b/src/libauth/auth_rpc.c index ffe3b08e..b9fa737e 100644 --- a/src/libauth/auth_rpc.c +++ b/src/libauth/auth_rpc.c @@ -68,7 +68,7 @@ auth_allocrpc(void) return nil; rpc->afd = open("/mnt/factotum/rpc", ORDWR); if(rpc->afd < 0){ - rpc->afid = nsopen("factotum", nil, "factotum/rpc", ORDWR); + rpc->afid = nsopen("factotum", nil, "rpc", ORDWR); if(rpc->afid == nil){ free(rpc); return nil; |