diff --git a/src/Routes/Root.c b/src/Routes/Root.c index c681c2e..a576919 100644 --- a/src/Routes/Root.c +++ b/src/Routes/Root.c @@ -160,7 +160,8 @@ RouteHead(RouteRoot, arr, argp) const char *cyto_ver = CytoplasmGetVersionStr(); size_t alloc = MemoryAllocated(); P("
");
-                P("Software: %s (v%s/Cyto %s)\n", NAME, VERSION, cyto_ver);
+                P("Software: %s ", NAME);
+                P("(v%s [%s]/Cytoplasm %s)\n", VERSION, CODE, cyto_ver);
                 P("Cytoplasm heap used: %d B\n", alloc);
                 P("
"); } diff --git a/tools/adminify.c b/tools/adminify.c index d7fe8a3..1c04b74 100644 --- a/tools/adminify.c +++ b/tools/adminify.c @@ -93,7 +93,7 @@ Main(Array *args, HashMap *env) db_path = ArrayGet(args, 1); glob = ArrayGet(args, 2); - parsee = DbOpen(db_path, 0); + parsee = DbOpenLMDB(db_path, 8 * 1024 * 1024); if (parsee) {