From a5a10295bd04b7996df00d3a7dddbde8d758ccd8 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 24 Aug 2023 17:29:04 -0900 Subject: [PATCH] dbnothing does nothing --- citadel/utils/dbnothing.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/citadel/utils/dbnothing.c b/citadel/utils/dbnothing.c index 914f9631f..5486e154f 100644 --- a/citadel/utils/dbnothing.c +++ b/citadel/utils/dbnothing.c @@ -1,4 +1,5 @@ -// Don't run this. It doesn't work and if you try to run it you will immediately die. +// This is a test utility for the backend API. It simply opens and closes the databases. +// There is no need for end users to ever run this program. So don't. And don't ask. // // Copyright (c) 2023 by Art Cancro citadel.org // @@ -70,7 +71,7 @@ int main(int argc, char **argv) { cdb_open_databases(); // do nothing - fprintf(stderr, "dbnothing: doing nothing\n"); + fprintf(stderr, "\ndbnothing: doing nothing\n\n"); // close databases cdb_close_databases(); -- 2.39.2