ctdldump/ctdlload: fix usage messages
authorArt Cancro <ajc@citadel.org>
Thu, 24 Aug 2023 23:37:18 +0000 (14:37 -0900)
committerArt Cancro <ajc@citadel.org>
Thu, 24 Aug 2023 23:37:18 +0000 (14:37 -0900)
citadel/utils/ctdldump.c
citadel/utils/ctdlload.c

index 97ff7129117df96dc3c65d16bf104b7ce34b6387..0997189de6bd7fc8121741ef8b5d7f2c1ccc6868 100644 (file)
@@ -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);
        }
index 258c47f9c6a94a19508dce8b4ea125b109b39dd2..926933e32ee254760f9c71f5a4688e832f0ed9c4 100644 (file)
@@ -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);
        }