HomeSort by relevance Sort by last modified time
    Searched full:mailfd (Results 1 - 1 of 1) sorted by null

  /external/toybox/toys/pending/
crond.c 477 int mailfd; local
489 mailfd = open(toybuf, O_RDONLY);
491 if (mailfd < 0) return;
493 if (fstat(mailfd, &sb) == -1 || sb.st_uid != 0 || sb.st_nlink != 0
495 xclose(mailfd);
499 do_fork(cfile, job, mailfd, "sendmail");
547 int mailfd = -1; local
552 if ((mailfd = open(toybuf, O_CREAT|O_TRUNC|O_WRONLY|O_EXCL|O_APPEND,
557 dprintf(mailfd, "To: %s\nSubject: cron: %s\n\n", cfile->mailto, job->cmd);
558 job->mailsize = lseek(mailfd, 0, SEEK_CUR)
    [all...]

Completed in 101 milliseconds