Lines Matching refs:ap
2042 struct wordlist *ap, **plink;
2074 for (ap = addrs; ap != NULL; ap = ap->next) {
2076 ptr_word = ap->word;
2144 ppp_warn("unknown host %s in auth. address list", ap->word);
2333 struct wordlist *ap, *addr_list, *alist, **app;
2432 ap = (struct wordlist *)
2434 if (ap == NULL)
2436 ap->word = (char *) (ap + 1);
2437 strcpy(ap->word, word);
2438 *app = ap;
2439 app = &ap->next;
2458 for (app = &addr_list; (ap = *app) != NULL; app = &ap->next)
2459 if (strcmp(ap->word, "--") == 0)
2462 if (ap != NULL) {
2463 ap = ap->next; /* first option */
2468 *opts = ap;
2469 else if (ap != NULL)
2470 free_wordlist(ap);