Lines Matching defs:dstpath
89 char *dstpath;
100 dstpath = (char *)malloc(dstpathLen);
101 if (dstpath == (char *)NULL) {
107 (void) snprintf(dstpath, dstpathLen, "%s/%s", tmpdir, tmpname);
109 if (mktemp(dstpath) == NULL) {
111 (void) free(dstpath);
117 r = copyf(script, dstpath, (time_t)0);
119 progerr(ERR_CANNOT_COPY, script, dstpath);
125 if (chmod(dstpath, 0444) != 0) {
127 (void) free(dstpath);
131 return (dstpath);