From 32bc21e861a3f53d88083fe7e00bbc7878bd0be3 Mon Sep 17 00:00:00 2001
From: Ken Rice <krice@freeswitch.org>
Date: Fri, 26 Dec 2008 18:43:54 +0000
Subject: [PATCH] clean up usage help

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10955 d0543943-73ff-0310-b7d9-9358b9ac24b2
---
 libs/esl/fs_cli.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libs/esl/fs_cli.c b/libs/esl/fs_cli.c
index 5bf48e2124..3e8201fe79 100644
--- a/libs/esl/fs_cli.c
+++ b/libs/esl/fs_cli.c
@@ -57,10 +57,10 @@ static int usage(char *name){
 	printf("Usage: %s [-H <host>] [-P <port>] [-p <secret>] [-d <level>] [-x command] [profile]\n\n", name);
 	printf("  -?,-h --help                    Usage Information\n");
 	printf("  -H, --host=hostname             Host to connect\n");
-	printf("  -P, --port=port                 Port to connect\n");
+	printf("  -P, --port=port                 Port to connect (1 - 65535)\n");
 	printf("  -p, --password=FILENAME         Password\n");
 	printf("  -x, --execute=command           Execute Command and exit (Work In Progress)\n");
-	printf("  -d, --debug=level               Debug Level 0 - 7\n\n");
+	printf("  -d, --debug=level               Debug Level (0 - 7)\n\n");
 	return 1;
 }