chiark / gitweb /
tests for cache.c
[disorder] / server / dump.c
index 39af755b8534b009209be73c9e0700d0aa667aa9..84b45d046199f1c28cd43391e02eba6cd1bb1daa 100644 (file)
@@ -390,7 +390,7 @@ int main(int argc, char **argv) {
   char *tmp;
   FILE *fp;
 
-  mem_init(1);
+  mem_init();
   while((n = getopt_long(argc, argv, "hVc:dDutsrRaP", options, 0)) >= 0) {
     switch(n) {
     case 'h': help();
@@ -423,9 +423,9 @@ int main(int argc, char **argv) {
       fatal(0, "specify only a dump file name");
     path = argv[optind];
   }
-  if(config_read()) fatal(0, "cannot read configuration");
+  if(config_read(0)) fatal(0, "cannot read configuration");
   trackdb_init(recover);
-  trackdb_open();
+  trackdb_open(TRACKDB_NO_UPGRADE);
   if(dump) {
     /* we write to a temporary file and rename into place */
     byte_xasprintf(&tmp, "%s.%lx.tmp", path, (unsigned long)getpid());
@@ -455,4 +455,3 @@ c-basic-offset:2
 comment-column:40
 End:
 */
-/* arch-tag:a446d6d9fcfbece4e3042e29c148a1cc */