diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-07-13 17:37:44 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-07-13 18:31:19 +0200 |
commit | 545bb2ed03001cd7a80a90f73eb500f396c043a1 (patch) | |
tree | 88b32b1885f848788fb3695b7f5dcb1fc68f14d6 /perl | |
parent | 0a9da00a10fa27a3e3b98439cb0a7d5e79135b58 (diff) |
Remove 'accessor' from addToStore()
This is only used by hydra-queue-runner and it's better to implement
it there.
Diffstat (limited to 'perl')
-rw-r--r-- | perl/lib/Nix/Store.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/lib/Nix/Store.xs b/perl/lib/Nix/Store.xs index 945ed49c7..f14c3f73f 100644 --- a/perl/lib/Nix/Store.xs +++ b/perl/lib/Nix/Store.xs @@ -182,7 +182,7 @@ void importPaths(int fd, int dontCheckSigs) PPCODE: try { FdSource source(fd); - store()->importPaths(source, nullptr, dontCheckSigs ? NoCheckSigs : CheckSigs); + store()->importPaths(source, dontCheckSigs ? NoCheckSigs : CheckSigs); } catch (Error & e) { croak("%s", e.what()); } |