aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_playback.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-22 21:17:16 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-22 21:17:16 +0000
commit9877aa711daa918754edf85c1a59f3da255bfdc5 (patch)
treee1ad3ceef8567a802e70e393ea228a39b46317c8 /apps/app_playback.c
parent7756b987a015d6001cb1f31e06439d4010125185 (diff)
Convert some spaces to tabs and make it so the CLI command is only registered
once instead of 3 times. (closes issue #11053) Reported by: seanbright Patches: app_playback.patch uploaded by seanbright (license 71) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@86835 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_playback.c')
-rw-r--r--apps/app_playback.c25
1 files changed, 10 insertions, 15 deletions
diff --git a/apps/app_playback.c b/apps/app_playback.c
index 182b7eac7..6754d0848 100644
--- a/apps/app_playback.c
+++ b/apps/app_playback.c
@@ -357,7 +357,6 @@ static int say_init_mode(char *mode) {
return 0;
}
-
static char *__say_cli_init(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
const char *old_mode = say_api_buf[0] ? say_new : say_old;
@@ -368,11 +367,11 @@ static char *__say_cli_init(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
e->usage =
"Usage: say load [new|old]\n"
" say load\n"
- " Report status of current say mode\n"
+ " Report status of current say mode\n"
" say load new\n"
- " Set say method, configured in say.conf\n"
+ " Set say method, configured in say.conf\n"
" say load old\n"
- " Set old say metod, coded in asterisk core\n";
+ " Set old say method, coded in asterisk core\n";
return NULL;
case CLI_GENERATE:
return NULL;
@@ -380,24 +379,20 @@ static char *__say_cli_init(struct ast_cli_entry *e, int cmd, struct ast_cli_arg
if (a->argc == 2) {
ast_cli(a->fd, "say mode is [%s]\n", old_mode);
return CLI_SUCCESS;
- } else if (a->argc != 3)
- return CLI_SHOWUSAGE;
- mode = a->argv[2];
-
- if (!strcmp(mode, old_mode)) {
+ } else if (a->argc != 3)
+ return CLI_SHOWUSAGE;
+ mode = a->argv[2];
+ if (!strcmp(mode, old_mode))
ast_log(LOG_NOTICE, "say mode is %s already\n", mode);
- } else {
- if (say_init_mode(mode) == 0) {
+ else
+ if (say_init_mode(mode) == 0)
ast_log(LOG_NOTICE, "init say.c from %s to %s\n", old_mode, mode);
- }
- }
+
return CLI_SUCCESS;
}
static struct ast_cli_entry cli_playback[] = {
AST_CLI_DEFINE(__say_cli_init, "Set or show the say mode"),
- AST_CLI_DEFINE(__say_cli_init, "Set the say mode"),
- AST_CLI_DEFINE(__say_cli_init, "Set the say mode"),
};
static int playback_exec(struct ast_channel *chan, void *data)