diff options
Diffstat (limited to 'perl/lib/Nix/Store.xs')
-rw-r--r-- | perl/lib/Nix/Store.xs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl/lib/Nix/Store.xs b/perl/lib/Nix/Store.xs index ee60ce13011d..7a5458113675 100644 --- a/perl/lib/Nix/Store.xs +++ b/perl/lib/Nix/Store.xs @@ -182,11 +182,11 @@ void exportPaths(int fd, ...) } -void importPaths(int fd) +void importPaths(int fd, int dontCheckSigs) PPCODE: try { FdSource source(fd); - store()->importPaths(source, 0); + store()->importPaths(source, 0, dontCheckSigs); } catch (Error & e) { croak("%s", e.what()); } |