From bb1034316d7dcafa2ab45762a6b6509e922c4c21 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 22 Mar 2016 14:21:45 +0100 Subject: Don't overload dumpPath() --- src/libstore/store-api.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/libstore/store-api.hh') diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 1a7440148322..62ee811ebfa6 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -223,7 +223,7 @@ public: const PathSet & references, bool repair = false) = 0; /* Write a NAR dump of a store path. */ - virtual void dumpPath(const Path & path, Sink & sink) = 0; + virtual void narFromPath(const Path & path, Sink & sink) = 0; /* Export a store path, that is, create a NAR dump of the store path and append its references and its deriver. Optionally, a @@ -365,7 +365,7 @@ public: class LocalFSStore : public Store { public: - void dumpPath(const Path & path, Sink & sink) override; + void narFromPath(const Path & path, Sink & sink) override; ref getFSAccessor() override; }; -- cgit 1.4.1