diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-21 04:03:33 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-21 04:03:54 +0100 |
commit | 0100b6e1bf682385e0939d4dd7be815d5cdf0e1a (patch) | |
tree | 3a0846deb7612b9c02056b7ce0f6377bbac3ee83 /src/import/import-tar.h | |
parent | 98c3800184cfc961b19d605f69d555d0cea8bb7a (diff) |
import: also add verification support to tar importer
Diffstat (limited to 'src/import/import-tar.h')
-rw-r--r-- | src/import/import-tar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/import/import-tar.h b/src/import/import-tar.h index 6a7477fee7..6a2b901d88 100644 --- a/src/import/import-tar.h +++ b/src/import/import-tar.h @@ -23,6 +23,7 @@ #include "sd-event.h" #include "macro.h" +#include "import-util.h" typedef struct TarImport TarImport; @@ -33,4 +34,4 @@ TarImport* tar_import_unref(TarImport *import); DEFINE_TRIVIAL_CLEANUP_FUNC(TarImport*, tar_import_unref); -int tar_import_pull(TarImport *import, const char *rul, const char *local, bool force_local); +int tar_import_pull(TarImport *import, const char *rul, const char *local, bool force_local, ImportVerify verify); |