Home
last modified time | relevance | path

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

/linux-4.4.14/security/tomoyo/
Dcondition.c498 char *right_word; in tomoyo_get_condition() local
519 right_word = strchr(left_word, '='); in tomoyo_get_condition()
520 if (!right_word || right_word == left_word) in tomoyo_get_condition()
522 is_not = *(right_word - 1) == '!'; in tomoyo_get_condition()
524 *(right_word++ - 1) = '\0'; /* Will restore later. */ in tomoyo_get_condition()
525 else if (*(right_word + 1) != '=') in tomoyo_get_condition()
526 *right_word++ = '\0'; /* Will restore later. */ in tomoyo_get_condition()
530 is_not ? "!" : "", right_word); in tomoyo_get_condition()
536 else if (!strcmp(right_word, "yes")) in tomoyo_get_condition()
538 else if (!strcmp(right_word, "no")) in tomoyo_get_condition()
[all …]