Lines Matching full:word
126 #define ISWILD(word) (word[0] == '*' && word[1] == 0)
497 wp->word = (char *) (wp + 1);
499 BCOPY(addr, wp->word, l);
519 wp->word = (char *) (wp + 1);
521 BCOPY(number, wp->word, l);
2065 ptr_word = ap->word;
2133 warn("unknown host %s in auth. address list", ap->word);
2240 if (addrs->word[0] == '-')
2242 if (addrs->word[0] != '!')
2265 l = strlen(wp->word);
2266 if ((wp->word)[l - 1] == '*')
2268 if (!strncasecmp(wp->word, remote_number, l))
2324 char word[MAXWORDLEN];
2334 if (!getword(f, word, &newline, filename))
2340 * Skip until we find a word at the start of a line.
2342 while (!newline && getword(f, word, &newline, filename))
2351 if (client != NULL && strcmp(word, client) != 0 && !ISWILD(word)) {
2355 if (!ISWILD(word))
2361 if (!getword(f, word, &newline, filename))
2365 if (!ISWILD(word)) {
2366 if (server != NULL && strcmp(word, server) != 0)
2381 if (!getword(f, word, &newline, filename))
2390 if (flags && ((cp = strchr(word, ':')) == NULL ||
2398 if (word[0] == '@' && word[1] == '/') {
2399 strlcpy(atfile, word+1, sizeof(atfile));
2405 if (!getword(sf, word, &xxx, atfile)) {
2412 strlcpy(lsecret, word, sizeof(lsecret));
2420 if (!getword(f, word, &newline, filename) || newline)
2423 malloc(sizeof(struct wordlist) + strlen(word) + 1);
2426 ap->word = (char *) (ap + 1);
2427 strcpy(ap->word, word);
2447 /* scan for a -- word indicating the start of options */
2449 if (strcmp(ap->word, "--") == 0)
2454 free(*app); /* free the "--" word */