[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: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
David Howells 2005-11-07 00:59:30 -08:00 коммит произвёл Linus Torvalds
Родитель 28ef35845f
Коммит 0f6ed7c264
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -434,7 +434,7 @@ ascend:
if (sp >= KEYRING_SEARCH_MAX_DEPTH)
continue;
if (!key_task_permission(make_key_ref(key, possessed),
if (key_task_permission(make_key_ref(key, possessed),
context, KEY_SEARCH) < 0)
continue;
@ -621,7 +621,7 @@ struct key *find_keyring_by_name(const char *name, key_serial_t bound)
if (strcmp(keyring->description, name) != 0)
continue;
if (!key_permission(make_key_ref(keyring, 0),
if (key_permission(make_key_ref(keyring, 0),
KEY_SEARCH) < 0)
continue;