Home
last modified time | relevance | path

Searched refs:right_word (Results 1 – 1 of 1) sorted by relevance

/linux-6.1.9/security/tomoyo/
Dcondition.c516 char *right_word; in tomoyo_get_condition() local
538 right_word = strchr(left_word, '='); in tomoyo_get_condition()
539 if (!right_word || right_word == left_word) in tomoyo_get_condition()
541 is_not = *(right_word - 1) == '!'; in tomoyo_get_condition()
543 *(right_word++ - 1) = '\0'; /* Will restore later. */ in tomoyo_get_condition()
544 else if (*(right_word + 1) != '=') in tomoyo_get_condition()
545 *right_word++ = '\0'; /* Will restore later. */ in tomoyo_get_condition()
549 is_not ? "!" : "", right_word); in tomoyo_get_condition()
555 else if (!strcmp(right_word, "yes")) in tomoyo_get_condition()
557 else if (!strcmp(right_word, "no")) in tomoyo_get_condition()
[all …]