Fixed bitwise or-and typo in my last commit.

This commit is contained in:
Jeremy Huddleston 2008-08-06 10:06:09 -07:00
parent 672682ebf9
commit 3ec2349760

View File

@ -669,7 +669,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);