Searched refs:obuf (Results 1 - 5 of 5) sorted by relevance

/sendmail/sendmail/
H A Dheaders.c1693 char obuf[MAXLINE]; local
1877 (void) sm_strlcpyn(obuf, sizeof(obuf), 2,
1879 if (!putline(obuf, mci))
1922 (void) sm_snprintf(obuf, sizeof(obuf),
1925 if (!putline(obuf, mci))
1960 char obuf[MAXLINE + 256]; /* additional length for h_field */ local
1965 (void) sm_snprintf(obuf, sizeof(obuf), "
2030 char obuf[MAXLINE + 3]; local
[all...]
H A Dalias.c61 char obuf[MAXNAME + 7]; local
93 (void) sm_strlcpyn(obuf, sizeof(obuf), 2, "owner-", a->q_user);
94 if (aliaslookup(obuf, &status, a->q_host) != NULL)
99 a->q_user, obuf);
100 a->q_user = sm_rpool_strdup_x(e->e_rpool, obuf);
168 strlen(a->q_user) > sizeof(obuf) - 7)
169 (void) sm_strlcpy(obuf, "owner-owner", sizeof(obuf));
171 (void) sm_strlcpyn(obuf, sizeo
[all...]
H A Dcollect.c539 char *obuf; local
542 obuf = buf;
560 memmove(buf, obuf, bp - obuf);
561 bp = &buf[bp - obuf];
562 if (obuf != bufbuf)
563 sm_free(obuf); /* XXX */
H A Drecipient.c566 char obuf[MAXLINE]; local
572 (void) sm_strlcpyn(obuf, sizeof(obuf), 2, p, ";");
589 if (sm_strlcat(obuf, p, sizeof(obuf)) >= sizeof(obuf))
592 obuf[0] = '\0';
599 if (obuf[0] != '\0')
601 sm_rpool_strdup_x(e->e_rpool, obuf);
H A Dparseaddr.c688 char obuf[50]; local
698 expand(OperatorChars, obuf, sizeof(obuf) - sizeof(DELIMCHARS),
700 (void) sm_strlcat(obuf, DELIMCHARS, sizeof(obuf));
701 for (p = obuf; *p != '\0'; p++)

Completed in 95 milliseconds