aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/gc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/gc.cc')
-rw-r--r--src/libstore/gc.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc
index 6f09e9cb7..020712368 100644
--- a/src/libstore/gc.cc
+++ b/src/libstore/gc.cc
@@ -60,7 +60,7 @@ void createSymlink(const Path & link, const Path & target, bool careful)
/* Remove the old symlink. */
if (pathExists(link)) {
- if (careful && (!isLink(link) || !isStorePath(readLink(link))))
+ if (careful && (!isLink(link) || !isInStore(readLink(link))))
throw Error(format("cannot create symlink `%1%'; already exists") % link);
unlink(link.c_str());
}
@@ -250,10 +250,10 @@ static void findRoots(const Path & path, bool recurseSymlinks,
string target = readLink(path);
Path target2 = absPath(target, dirOf(path));
- if (isStorePath(target2)) {
+ if (isInStore(target2)) {
debug(format("found root `%1%' in `%2%'")
% target2 % path);
- roots.insert(target2);
+ roots.insert(toStorePath(target2));
}
else if (recurseSymlinks) {