plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit ba285d2ba998955026aea9227b3b9329a5f83e38
parent f93c7b2dc81603960e32568befcbc63679ba91aa
Author: rsc <devnull@localhost>
Date:   Fri, 11 Feb 2005 22:04:12 +0000

open correct factotum file

Diffstat:
Msrc/libauth/auth_rpc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;