mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-03-09 14:33:51 +01:00
Display what directory a temporary output file is being written to. This helps enable debugging inadequate space errors.
Some checks failed
check_build / build (push) Has been cancelled
Some checks failed
check_build / build (push) Has been cancelled
This commit is contained in:
parent
93bb1190f8
commit
2de3cd3dbc
1
lrzip.c
1
lrzip.c
|
|
@ -340,6 +340,7 @@ int open_tmpoutfile(rzip_control *control)
|
|||
if (unlikely(!control->outfile))
|
||||
fatal_return(("Failed to allocate outfile name\n"), -1);
|
||||
strcpy(control->outfile, control->tmpdir);
|
||||
print_maxverbose("Writing temporary file to %s\n", control->tmpdir);
|
||||
strcat(control->outfile, "lrzipout.XXXXXX");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue