diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-05-28 13:50:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-28 13:50:06 +0200 |
commit | de141fcb792318bd134f9a4be0235872830d362f (patch) | |
tree | f8d9988ccc5897beb7b50e5c37b70009f0516b14 /src/libstore/legacy-ssh-store.cc | |
parent | d2a537568a7ed3fa8bee63c4298b771a27fdad89 (diff) | |
parent | 0f96f45061e574c9cf217e3dd5634dfdbf210235 (diff) |
Merge pull request #3455 from Ericson2314/enum-FileIngestionMethod
Replace some `bool recursive` with a new `FileIngestionMethod` enum
Diffstat (limited to 'src/libstore/legacy-ssh-store.cc')
-rw-r--r-- | src/libstore/legacy-ssh-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/legacy-ssh-store.cc b/src/libstore/legacy-ssh-store.cc index 458266be0..af20d389b 100644 --- a/src/libstore/legacy-ssh-store.cc +++ b/src/libstore/legacy-ssh-store.cc @@ -195,7 +195,7 @@ struct LegacySSHStore : public Store { unsupported("queryPathFromHashPart"); } StorePath addToStore(const string & name, const Path & srcPath, - bool recursive, HashType hashAlgo, + FileIngestionMethod method, HashType hashAlgo, PathFilter & filter, RepairFlag repair) override { unsupported("addToStore"); } |