Home
last modified time | relevance | path

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

/dragonfly/usr.bin/finger/
H A Dfinger.c257 char conf_alias[LINE_MAX]; in userlist() local
293 while(fgets(conf_alias, sizeof(conf_alias), conf_fp) != NULL) { in userlist()
294 conf_length = strlen(conf_alias); in userlist()
295 if (*conf_alias == '#' || conf_alias[--conf_length] != '\n') in userlist()
297 conf_alias[conf_length] = '\0'; /* Remove trailing LF */ in userlist()
298 if ((conf_realname = strchr(conf_alias, ':')) == NULL) in userlist()
302 if (strcmp(*p, conf_alias) == 0) { in userlist()