From 0dce785d15ccb8309a7a9a5efb8c097f25efcebc Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 24 Aug 2023 14:37:18 -0900 Subject: [PATCH] ctdldump/ctdlload: fix usage messages --- citadel/utils/ctdldump.c | 2 +- citadel/utils/ctdlload.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/citadel/utils/ctdldump.c b/citadel/utils/ctdldump.c index 97ff71291..0997189de 100644 --- a/citadel/utils/ctdldump.c +++ b/citadel/utils/ctdldump.c @@ -387,7 +387,7 @@ int main(int argc, char **argv) { } else { fprintf(stderr, "ctdldump: usage: ctdldump -y -h[citadel_dir] >[dump_file]\n"); - fprintf(stderr, " [citadel_dir] is your database directory, usually /usr/local/citadel\n"); + fprintf(stderr, " [citadel_dir] is your server directory, usually /usr/local/citadel\n"); fprintf(stderr, " Please read [ https://www.citadel.org/dump-and-load.html ] to learn how to proceed.\n"); exit(1); } diff --git a/citadel/utils/ctdlload.c b/citadel/utils/ctdlload.c index 258c47f9c..926933e32 100644 --- a/citadel/utils/ctdlload.c +++ b/citadel/utils/ctdlload.c @@ -753,8 +753,8 @@ int main(int argc, char **argv) { fprintf(stderr, "ctdlload: You have specified the [-y] flag, so processing will continue.\n"); } else { - fprintf(stderr, "ctdlload: usage: ctdlload -y -h[data_dir] <[dump_file]\n"); - fprintf(stderr, " [data_dir] is your database directory, usually /usr/local/citadel/data\n"); + fprintf(stderr, "ctdlload: usage: ctdlload -y -h[citadel_dir] <[dump_file]\n"); + fprintf(stderr, " [citadel_dir] is your server directory, usually /usr/local/citadel\n"); fprintf(stderr, " Please read [ https://www.citadel.org/dump-and-load.html ] to learn how to proceed.\n"); exit(1); } -- 2.39.2