Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/devfsadm/
H A Ddevfsadm.c7824 char device_prefix[100]; in is_minor_node() local
7826 (void) snprintf(device_prefix, sizeof (device_prefix), "../devices/"); in is_minor_node()
7828 if ((ptr = strstr(contents, device_prefix)) != NULL) { in is_minor_node()
7831 *mn_root = ptr += strlen(device_prefix) - 1; in is_minor_node()
7836 (void) snprintf(device_prefix, sizeof (device_prefix), "/devices/"); in is_minor_node()
7838 if (strncmp(contents, device_prefix, strlen(device_prefix)) == 0) { in is_minor_node()
7841 *mn_root = contents + strlen(device_prefix) - 1; in is_minor_node()