[Asterisk-cvs] asterisk/res res_indications.c,1.13,1.14

russell at lists.digium.com russell at lists.digium.com
Wed Jul 13 09:59:30 CDT 2005


Update of /usr/cvsroot/asterisk/res
In directory mongoose.digium.com:/tmp/cvs-serv27383/res

Modified Files:
	res_indications.c 
Log Message:
fix typo in app description (bug #4697)


Index: res_indications.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_indications.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- res_indications.c	10 Jul 2005 23:21:39 -0000	1.13
+++ res_indications.c	13 Jul 2005 14:07:29 -0000	1.14
@@ -59,12 +59,12 @@
 "       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 @@
 	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 @@
 	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;
 }




More information about the svn-commits mailing list