Searched defs:at_cmdfile (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/cron/
H A Dcron.c2177 * free at_cmdfile and outfile plus jobname buffers of the runinfo structure.
2187 char *at_cmdfile = NULL; local
2230 at_cmdfile = xmalloc(strlen(ATDIR) + strlen(e->cmd) + 2);
2231 (void) sprintf(at_cmdfile, "%s/%s", ATDIR, e->cmd);
2232 if ((atcmdfp = fopen(at_cmdfile, "r")) == NULL) {
2237 cron_unlink(at_cmdfile);
2240 free(at_cmdfile);
2244 rp->jobname = xmalloc(strlen(at_cmdfile) + 1);
2245 (void) strcpy(rp->jobname, at_cmdfile);
2300 free(at_cmdfile);
[all...]

Completed in 51 milliseconds