diff options
author | regnat <rg@regnat.ovh> | 2021-03-08 16:43:11 +0100 |
---|---|---|
committer | regnat <rg@regnat.ovh> | 2021-03-15 16:35:14 +0100 |
commit | 54ced9072b94515a756e1e8e76c92a42f0ccf366 (patch) | |
tree | 9e4bd8613a73dc749b8b9f933d5ca216904e9cfe /src/libstore/store-api.hh | |
parent | 3e6017f911127555cfbed71fe4a4df8f70d08bbb (diff) |
Check the signatures when copying store paths around
Broken atm
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index b90aeaa4c..5d19e8949 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -485,6 +485,8 @@ public: */ virtual void registerDrvOutput(const Realisation & output) { unsupported("registerDrvOutput"); } + virtual void registerDrvOutput(const Realisation & output, CheckSigsFlag checkSigs) + { return registerDrvOutput(output); } /* Write a NAR dump of a store path. */ virtual void narFromPath(const StorePath & path, Sink & sink) = 0; |