diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-08-03 20:52:49 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-08-03 20:52:49 +0200 |
commit | ab6e2ca35be45123d111aa1cc2b340a344fbdda3 (patch) | |
tree | 036c9352ea10e16a055d974b0bf68148af648ec7 | |
parent | 0f219f1c211a8dc24982095d0f544291ebe79d26 (diff) |
Updated the usage
-rw-r--r-- | FICS/ficsmain.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/ficsmain.c b/FICS/ficsmain.c index 082dc40..f1bdf6d 100644 --- a/FICS/ficsmain.c +++ b/FICS/ficsmain.c @@ -182,11 +182,12 @@ main_event_loop(void) PRIVATE __dead void usage(char *progname) { - fprintf(stderr, "Usage: %s [-p port] [-C] [-h] [-l]\n", progname); + fprintf(stderr, "Usage: %s [-p port] [-C] [-dhl]\n", progname); fprintf(stderr, "\t\t-p port\t\tSpecify port. (Default=%d)\n", DEFAULT_PORT); fprintf(stderr, "\t\t-C\t\tStart with console player connected " "to stdin.\n"); + fprintf(stderr, "\t\t-d\t\tRun in the background.\n"); fprintf(stderr, "\t\t-h\t\tDisplay this information.\n"); fprintf(stderr, "\t\t-l\t\tDisplay the legal notice and exit.\n"); exit(EXIT_FAILURE); |