Lines Matching refs:p

58 	register char *p;  local
105 p = aliaslookup(a->q_user, &status, a->q_host);
118 if (p == NULL)
128 a->q_paddr, a->q_host, a->q_user, p);
134 message("aliased to %s", shortenstring(p, MAXSHORTSTR));
138 a->q_paddr, shortenstring(p, MAXSHORTSTR));
158 (void) sendtolist(p, a, sendq, aliaslevel + 1, e);
264 register char *p; local
272 for (p = spec; p != NULL; )
276 while (isascii(*p) && isspace(*p))
277 p++;
278 if (*p == '\0')
280 spec = p;
304 p = strpbrk(p, ALIAS_SPEC_SEPARATORS);
305 if (p != NULL && *p == SEPARATOR)
308 *p++ = '\0';
310 spec = p;
319 if (p != NULL)
323 for (; *p != '\0'; p++)
331 if (*p == '"')
333 else if (*p == ',' && !quoted)
338 if (*p == '\0')
339 p = NULL;
341 if (p != NULL)
342 *p++ = '\0';
645 register char *p; local
666 p = strchr(line, '\n');
669 while (p != NULL && p > line && p[-1] == '\\')
671 p--;
672 if (sm_io_fgets(af, SM_TIME_DEFAULT, p,
673 SPACELEFT(line, p)) == NULL)
676 p = strchr(p, '\n');
678 if (p != NULL)
679 *p = '\0';
719 for (p = line; *p != '\0' && *p != ':' && *p != '\n'; p++)
721 if (*p++ != ':')
739 while (isascii(*p) && isspace(*p))
740 p++;
741 rhs = p;
746 nlp = &p[strlen(p)];
747 if (nlp > p && nlp[-1] == '\n')
753 while (*p != '\0')
757 while ((isascii(*p) && isspace(*p)) ||
758 *p == ',')
759 p++;
760 if (*p == '\0')
762 if (parseaddr(p, &bl, RF_COPYNONE, ',',
765 usrerr("553 5.3.5 %s... bad address", p);
766 p = delimptr;
771 p = nlp;
782 if (sm_io_fgets(af, SM_TIME_DEFAULT, p,
783 sizeof(line) - (p-line)) == NULL)
788 if (strchr(p, '\n') == NULL && !sm_io_eof(af))
823 p = rhs;
824 while (isascii(*p) && isspace(*p))
825 p++;
827 if (rhssize == 0 || *p == '\0')