Home
last modified time | relevance | path

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

/busybox-1.35.0/networking/
Difupdown.c891 char *first_word; in read_interfaces() local
917 first_word = next_word(&rest_of_line); in read_interfaces()
918 if (!first_word || *first_word == '#') { in read_interfaces()
923 if (strcmp(first_word, "mapping") == 0) { in read_interfaces()
927 while ((first_word = next_word(&rest_of_line)) != NULL) { in read_interfaces()
929 currmap->match[currmap->n_matches++] = xstrdup(first_word); in read_interfaces()
945 } else if (strcmp(first_word, "iface") == 0) { in read_interfaces()
1010 } else if (strcmp(first_word, "auto") == 0) { in read_interfaces()
1011 while ((first_word = next_word(&rest_of_line)) != NULL) { in read_interfaces()
1014 if (llist_find_str(defn->autointerfaces, first_word)) { in read_interfaces()
[all …]