X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fmain.c;h=1e22885389947ed03be9ea01508c7d36d236f0b4;hb=320a5588a8f195ee982722729c2b8dc99c68756f;hp=fce997a77a471f4201d3706e107f0e51ac1fee58;hpb=c989e4519ccdb068d0897e6255b9f3306e385bac;p=umurmur.git diff --git a/src/main.c b/src/main.c index fce997a..1e22885 100644 --- a/src/main.c +++ b/src/main.c @@ -217,16 +217,16 @@ void setscheduler() void printhelp() { printf("uMurmur version %s. Mumble protocol %d.%d.%d\n", UMURMUR_VERSION, PROTVER_MAJOR, PROTVER_MINOR, PROTVER_PATCH); - printf("Usage: umurmurd [-d] [-p ] [-c ] [-h]\n"); - printf(" -d - Do not daemonize\n"); - printf(" -p - Write PID to this file\n"); - printf(" -c - Specify configuration file\n"); + printf("Usage: umurmurd [-d] [-r] [-h] [-p ] [-c ] [-a ] [-b ]\n"); + printf(" -d - Do not daemonize - run in foreground.\n"); #ifdef _POSIX_PRIORITY_SCHEDULING printf(" -r - Run with realtime priority\n"); #endif + printf(" -h - Print this help\n"); + printf(" -p - Write PID to this file\n"); + printf(" -c - Specify configuration file (default %s)\n", DEFAULT_CONFIG); printf(" -a
- Bind to IP address\n"); printf(" -b - Bind to port\n"); - printf(" -h - Print this help\n"); exit(0); }