commit | f67dabbdde1fe112dfff05d02890f1e0d54117a8 | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Tue Mar 06 13:32:16 2012 +0000 |
committer | James Morris <james.l.morris@oracle.com> | Wed Mar 07 11:12:06 2012 +1100 |
tree | 5cf73d686d39df4e9986194ff64e98fdcdd4e444 | |
parent | df91e49477a9be15921cb2854e1d12a3bdb5e425 [diff] |
KEYS: testing wrong bit for KEY_FLAG_REVOKED The test for "if (cred->request_key_auth->flags & KEY_FLAG_REVOKED) {" should actually testing that the (1 << KEY_FLAG_REVOKED) bit is set. The current code actually checks for KEY_FLAG_DEAD. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: James Morris <james.l.morris@oracle.com>