]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
fix show applications output for forkcdr (bug #2677)
authorRussell Bryant <russell@russellbryant.com>
Mon, 25 Oct 2004 21:57:27 +0000 (21:57 +0000)
committerRussell Bryant <russell@russellbryant.com>
Mon, 25 Oct 2004 21:57:27 +0000 (21:57 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4096 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_forkcdr.c

index 547bfa45eae214270e8680b3dc1d380fefed9433..bf493d523129751c18e8d536de0b9bb984a99786 100755 (executable)
@@ -23,7 +23,8 @@
 static char *tdesc = "Fork The CDR into 2 seperate entities.";
 static char *app = "ForkCDR";
 static char *synopsis = 
-"Forks the Call Data Record\n"
+"Forks the Call Data Record";
+static char *descrip = 
 "  ForkCDR():  Causes the Call Data Record to fork an additional\n"
        "cdr record starting from the time of the fork call\n";
 
@@ -68,7 +69,7 @@ int unload_module(void)
 
 int load_module(void)
 {
-       return ast_register_application(app, forkcdr_exec, synopsis, tdesc);
+       return ast_register_application(app, forkcdr_exec, synopsis, descrip);
 }
 
 char *description(void)