From: Russell Bryant Date: Wed, 5 Jan 2005 05:41:24 +0000 (+0000) Subject: fix an incorrect discription and some formatting (bug #3226) X-Git-Tag: 1.0.11.1~293 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c54495507dad9c895af98df97c89b5ad1820294;p=thirdparty%2Fasterisk.git fix an incorrect discription and some formatting (bug #3226) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4670 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_test.c b/apps/app_test.c index 3743b67713..702dbdc3f2 100755 --- a/apps/app_test.c +++ b/apps/app_test.c @@ -1,7 +1,7 @@ /* * Asterisk -- A telephony toolkit for Linux. * - * Applictions connected with CDR engine + * Applications to test connection and produce report in text file * * Copyright (C) 2004, Digium, Inc. * @@ -14,6 +14,7 @@ #include #include +#include #include #include #include @@ -29,13 +30,15 @@ static char *tdesc = "Interface Test Application"; -static char *tests_descrip = "TestServer(): Perform test server function and write call report" - "Results stored in /var/log/asterisk/testreports/.txt"; +static char *tests_descrip = + "TestServer(): Perform test server function and write call report.\n" + "Results stored in /var/log/asterisk/testreports/-server.txt"; static char *tests_app = "TestServer"; static char *tests_synopsis = "Execute Interface Test Server"; -static char *testc_descrip = "TestClient(testid): Executes test client with given testid.\n" - "Results stored in /var/log/asterisk/testreports/.txt"; +static char *testc_descrip = + "TestClient(testid): Executes test client with given testid.\n" + "Results stored in /var/log/asterisk/testreports/-client.txt"; static char *testc_app = "TestClient"; static char *testc_synopsis = "Execute Interface Test Client";