提交 0f6ed7c2 编写于 作者: D David Howells 提交者: Linus Torvalds

[PATCH] Keys: Remove incorrect and obsolete '!' operators

The attached patch removes a couple of incorrect and obsolete '!' operators
left over from the conversion of the key permission functions from
true/false returns to zero/error returns.
Signed-Off-By: NDavid Howells <dhowells@redhat.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 28ef3584
...@@ -434,8 +434,8 @@ key_ref_t keyring_search_aux(key_ref_t keyring_ref, ...@@ -434,8 +434,8 @@ key_ref_t keyring_search_aux(key_ref_t keyring_ref,
if (sp >= KEYRING_SEARCH_MAX_DEPTH) if (sp >= KEYRING_SEARCH_MAX_DEPTH)
continue; continue;
if (!key_task_permission(make_key_ref(key, possessed), if (key_task_permission(make_key_ref(key, possessed),
context, KEY_SEARCH) < 0) context, KEY_SEARCH) < 0)
continue; continue;
/* stack the current position */ /* stack the current position */
...@@ -621,8 +621,8 @@ struct key *find_keyring_by_name(const char *name, key_serial_t bound) ...@@ -621,8 +621,8 @@ struct key *find_keyring_by_name(const char *name, key_serial_t bound)
if (strcmp(keyring->description, name) != 0) if (strcmp(keyring->description, name) != 0)
continue; continue;
if (!key_permission(make_key_ref(keyring, 0), if (key_permission(make_key_ref(keyring, 0),
KEY_SEARCH) < 0) KEY_SEARCH) < 0)
continue; continue;
/* found a potential candidate, but we still need to /* found a potential candidate, but we still need to
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册