From 33d5132fd8b2cbdcb3823a490896e73d879c0a24 Mon Sep 17 00:00:00 2001 From: marschap Date: Tue, 19 Sep 2006 08:51:35 +0000 Subject: [PATCH] fix -f in help screen --- server/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/main.c b/server/main.c index 07a73e1..b8fbadb 100644 --- a/server/main.c +++ b/server/main.c @@ -1003,7 +1003,7 @@ output_help_screen(void) fprintf (stdout, "\t-h\t\tDisplay this help screen\n"); fprintf (stdout, "\t-c \tUse a configuration file other than %s\n", DEFAULT_CONFIGFILE); fprintf (stdout, "\t-d \tAdd a driver to use (overrides drivers in config file) [%s]\n", DEFAULT_DRIVER); - fprintf (stdout, "\t-f \tWhether to run in the foreground\n"); + fprintf (stdout, "\t-f\t\tRun in the foreground\n"); fprintf (stdout, "\t-a \tNetwork (IP) address to bind to [%s]\n", DEFAULT_BIND_ADDR); fprintf (stdout, "\t-p \tNetwork port to listen for connections on [%i]\n", DEFAULT_BIND_PORT); fprintf (stdout, "\t-u \tUser to run as [%s]\n", DEFAULT_USER);