aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-13 14:07:29 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-07-13 14:07:29 +0000
commit8d67c0a010ef6a5ddb8164f82240c4267fd61eac (patch)
tree9065cfd10c32d69abfc539fffc28298a7a0a104f /res
parentc52acdaf456da962de42cf8475383d17a7d27d65 (diff)
fix typo in app description (bug #4697)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6119 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rwxr-xr-xres/res_indications.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/res/res_indications.c b/res/res_indications.c
index b3852daf1..54d913e56 100755
--- a/res/res_indications.c
+++ b/res/res_indications.c
@@ -59,12 +59,12 @@ static char help_show_indications[] =
" indications for the specified countries.\n";
char *playtones_desc=
-"PlayTone(arg): Plays a tone list. Execution will continue with the next step immediately,\n"
+"PlayTones(arg): Plays a tone list. Execution will continue with the next step immediately,\n"
"while the tones continue to play.\n"
"Arg is either the tone name defined in the indications.conf configuration file, or a directly\n"
"specified list of frequencies and durations.\n"
-"See indications.conf for a description of the specification of a tonelist.\n\n"
-"Use the StopPlaytones application to stop the tones playing. \n";
+"See the sample indications.conf for a description of the specification of a tonelist.\n\n"
+"Use the StopPlayTones application to stop the tones playing. \n";
/*
* Implementation of functions provided by this module
@@ -380,8 +380,8 @@ int unload_module(void)
ast_cli_unregister(&add_indication_cli);
ast_cli_unregister(&remove_indication_cli);
ast_cli_unregister(&show_indications_cli);
- ast_unregister_application("Playtones");
- ast_unregister_application("StopPlaytones");
+ ast_unregister_application("PlayTones");
+ ast_unregister_application("StopPlayTones");
return 0;
}
@@ -393,8 +393,8 @@ int load_module(void)
ast_cli_register(&add_indication_cli);
ast_cli_register(&remove_indication_cli);
ast_cli_register(&show_indications_cli);
- ast_register_application("Playtones", handle_playtones, "Play a tone list", playtones_desc);
- ast_register_application("StopPlaytones", handle_stopplaytones, "Stop playing a tone list","Stop playing a tone list");
+ ast_register_application("PlayTones", handle_playtones, "Play a tone list", playtones_desc);
+ ast_register_application("StopPlayTones", handle_stopplaytones, "Stop playing a tone list","Stop playing a tone list");
return 0;
}