about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2012-02-14T23·28+0100
committerEelco Dolstra <e.dolstra@tudelft.nl>2012-02-14T23·28+0100
commit58ac7a17a43587001331e4a0379d38c369b99057 (patch)
tree58bb305548bacd462a6996f59bf401a8049ece31
parente9fc91df45c28376960a6e38c8c5f04bf9312623 (diff)
Don't use deletePath() to delete a single file
-rw-r--r--src/libstore/gc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc
index c2e999a6e6a7..e1e7b4c1c54f 100644
--- a/src/libstore/gc.cc
+++ b/src/libstore/gc.cc
@@ -167,7 +167,7 @@ void LocalStore::addTempRoot(const Path & path)
             if (pathExists(fnTempRoots))
                 /* It *must* be stale, since there can be no two
                    processes with the same pid. */
-                deletePath(fnTempRoots);
+                unlink(fnTempRoots.c_str());
 
 	    fdTempRoots = openLockFile(fnTempRoots, true);