about summary refs log tree commit diff
path: root/src/globals.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-07-08T08·35+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-07-08T08·35+0000
commita5a90f501e471383a8dfccfe8af3c804cefa77cf (patch)
tree1171060204c0089a80aa3d0a43f541c01856a85d /src/globals.cc
parentbe96c2189ca017612277ab6301164a5e2facfca5 (diff)
* Get rid of the `netsources' database.
* Rename the `refs' database to `hash2paths'.

Diffstat (limited to 'src/globals.cc')
-rw-r--r--src/globals.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/globals.cc b/src/globals.cc
index a81c90caa41d..40a5a981b871 100644
--- a/src/globals.cc
+++ b/src/globals.cc
@@ -2,9 +2,8 @@
 #include "db.hh"
 
 
-string dbRefs = "refs";
+string dbHash2Paths = "hash2paths";
 string dbSuccessors = "successors";
-string dbNetSources = "netsources";
 
 string nixStore = "/UNINIT";
 string nixLogDir = "/UNINIT";
@@ -13,7 +12,6 @@ string nixDB = "/UNINIT";
 
 void initDB()
 {
-    createDB(nixDB, dbRefs);
+    createDB(nixDB, dbHash2Paths);
     createDB(nixDB, dbSuccessors);
-    createDB(nixDB, dbNetSources);
 }