Home
last modified time | relevance | path

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

/freebsd/usr.bin/finger/
H A Dfinger.c268 char conf_alias[LINE_MAX]; in userlist() local
304 while(fgets(conf_alias, sizeof(conf_alias), conf_fp) != NULL) { in userlist()
305 conf_length = strlen(conf_alias); in userlist()
306 if (*conf_alias == '#' || conf_alias[--conf_length] != '\n') in userlist()
308 conf_alias[conf_length] = '\0'; /* Remove trailing LF */ in userlist()
309 if ((conf_realname = strchr(conf_alias, ':')) == NULL) in userlist()
313 if (strcmp(*p, conf_alias) == 0) { in userlist()