diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-06-15 20:33:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-06-15 20:33:35 +0200 |
commit | 78ed65ac8dd05041f08ba8b089e1e87445a0905f (patch) | |
tree | e62a030ceb75b3d777c57793bec55cb7a220f7df /src/import/export-tar.c | |
parent | dd5da693ab4579c619017b4aac2a234d4b7a3ea7 (diff) | |
parent | 770b5ce4fc31a336a41e81381c229da725ef0cfa (diff) |
Merge pull request #212 from poettering/gc-machine-snapshots
automatically remove old machine shapshots at boot
Diffstat (limited to 'src/import/export-tar.c')
-rw-r--r-- | src/import/export-tar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/export-tar.c b/src/import/export-tar.c index d31295745f..5adc748c50 100644 --- a/src/import/export-tar.c +++ b/src/import/export-tar.c @@ -290,7 +290,7 @@ int tar_export_start(TarExport *e, const char *path, int fd, ImportCompressType free(e->temp_path); e->temp_path = NULL; - r = tempfn_random(path, &e->temp_path); + r = tempfn_random(path, NULL, &e->temp_path); if (r < 0) return r; |