plan9port

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

commit 78378021c859b15a94fa21c75ab380d08a3594fb
parent 11f10a6cb911ab328337aa06f9f051c77f1ecf55
Author: rsc <devnull@localhost>
Date:   Sat,  7 May 2005 22:33:54 +0000

check auth_proxy return value properly

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

diff --git a/src/cmd/srv.c b/src/cmd/srv.c @@ -141,7 +141,7 @@ xauth(void) return; } - if(xauth_proxy(auth_getkey, "proto=p9any role=client %s", keypattern) < 0) + if(xauth_proxy(auth_getkey, "proto=p9any role=client %s", keypattern) == nil) sysfatal("authproxy: %r"); }