Index: apps/app_skel.c =================================================================== RCS file: /usr/cvsroot/asterisk/apps/app_skel.c,v retrieving revision 1.11 diff -u -r1.11 app_skel.c --- apps/app_skel.c 6 Jun 2005 22:39:32 -0000 1.11 +++ apps/app_skel.c 13 Jun 2005 23:50:21 -0000 @@ -28,10 +28,11 @@ #include "asterisk/app.h" static char *tdesc = "Trivial skeleton Application"; -static char *app = "skel"; +static char *app = "Skel"; static char *synopsis = -" This is a skeleton application that shows you the basic structure to create your\n" -"own asterisk applications.\n"; +"Skeleton application to build asterisk applications."; +static char *descrip = "That application is only used to give a template to build other applications.\n" + " That shows you the basic structure to create your own asterisk applications.\n"; #define OPTION_A (1 << 0) /* Option A */ #define OPTION_B (1 << 1) /* Option B(n) */ @@ -103,7 +104,7 @@ int load_module(void) { - return ast_register_application(app, app_exec, tdesc, synopsis); + return ast_register_application(app, app_exec, synopsis, descrip); } char *description(void)