os/connection: TRANS_NOXAUTH bit comparison brainfart fix.

https://bugs.freedesktop.org/show_bug.cgi?id=18524
This commit is contained in:
Jeremy Huddleston 2008-11-14 10:56:21 -08:00
parent 17bccff4ce
commit e917806fc5

View File

@ -665,7 +665,7 @@ ClientAuthorized(ClientPtr client,
/* Allow any client to connect without authorization on a launchd socket,
because it is securely created -- this prevents a race condition on launch */
if(trans_conn->flags | TRANS_NOXAUTH) {
if(trans_conn->flags & TRANS_NOXAUTH) {
auth_id = (XID) 0L;
} else {
auth_id = CheckAuthorization (proto_n, auth_proto, string_n, auth_string, client, &reason);