Lines Matching defs:savefile
1409 char *volatile savefile;
1431 savefile = NULL;
1472 savefile = outfile;
1474 cp = strrchr(decodedpath, '/'); /* find savefile */
1476 savefile = ftp_strdup(cp + 1);
1478 savefile = ftp_strdup(decodedpath);
1484 outfile = ftp_strdup(savefile);
1486 DPRINTF("%s: savefile `%s'\n", __func__, savefile);
1487 if (EMPTYSTRING(savefile)) {
1502 if (stat(savefile, &sb) == 0)
1652 if (outfile == savefile) {
1653 if (strcmp(savefile, "-") == 0) {
1655 } else if (*savefile == '|') {
1657 fout = popen(savefile + 1, "w");
1659 warn("Can't execute `%s'", savefile + 1);
1682 url, savefile);
1685 fout = fopen(savefile, "a");
1687 fout = fopen(savefile, "w");
1689 warn("Can't open `%s'", savefile);
1789 warn("Writing `%s'", savefile);
1856 if (utimes(savefile, tval) == -1) {
1892 if (savefile != outfile)
1893 FREEPTR(savefile);
2248 cp = strrchr(file, '/'); /* find savefile */