Home
last modified time | relevance | path

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

/freebsd/contrib/sendmail/contrib/
H A Drmail.oldsys.patch53 if (from_sys != NULL) { /* Set sender's host name. */
54 ! if (strchr(from_sys, '.') == NULL)
56 "-oMs%s.%s", from_sys, domain);
58 ! (void)snprintf(buf, sizeof(buf), "-oMs%s", from_sys);
75 if (from_sys != NULL) { /* Set sender's host name. */
76 ! if (strchr(from_sys, '.') == NULL) {
77 ! if ((strlen(from_sys) + strlen(domain) + 6)
81 "-oMs%s.%s", from_sys, domain);
84 ! if ((strlen(from_sys) + 5) > sizeof(buf))
86 ! (void)sprintf(buf, "-oMs%s", from_sys);
/freebsd/contrib/sendmail/rmail/
H A Drmail.c102 char *from_path, *from_sys, *from_user; local
134 from_path = from_sys = from_user = NULL;
215 if (from_sys == NULL)
217 from_sys = newstr(p);
222 from_sys);
289 if (from_sys == NULL)
291 else if (strchr(from_sys, '.') == NULL)
293 domain, from_sys, domain);
295 sm_snprintf(buf, sizeof(buf), "-p%s:%s", domain, from_sys);
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dfile_clock.h72 …_LIBCPP_HIDE_FROM_ABI static chrono::file_time<_Duration> from_sys(const chrono::sys_time<_Duratio… in from_sys() function
/freebsd/contrib/llvm-project/libcxx/include/
H A Dchrono318 static file_time<see-below> from_sys(const sys_time<Duration>&);