summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne M. Hubbard <dwayne.hubbard@gmail.com>2007-06-11 22:31:51 +0000
committerDwayne M. Hubbard <dwayne.hubbard@gmail.com>2007-06-11 22:31:51 +0000
commit897418858df889008b7a557626c22d5f334731a9 (patch)
tree06b319e0119fc0d7b4c7e58e19419055dfdb406e
parentf314fa039b6ca6d8b50d79a29e9393e04b42d274 (diff)
corrected CLI 'core show codecs' syntax for issue 9945, thanks eserra.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@68855 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/frame.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main/frame.c b/main/frame.c
index 8f30e4b7e..57a8b0b33 100644
--- a/main/frame.c
+++ b/main/frame.c
@@ -904,15 +904,15 @@ static struct ast_cli_entry my_clis[] = {
show_codecs, "Displays a list of codecs",
frame_show_codecs_usage },
- { { "core", "show", "audio", "codecs", NULL },
+ { { "core", "show", "codecs", "audio", NULL },
show_codecs, "Displays a list of audio codecs",
frame_show_codecs_usage },
- { { "core", "show", "video", "codecs", NULL },
+ { { "core", "show", "codecs", "video", NULL },
show_codecs, "Displays a list of video codecs",
frame_show_codecs_usage },
- { { "core", "show", "image", "codecs", NULL },
+ { { "core", "show", "codecs", "image", NULL },
show_codecs, "Displays a list of image codecs",
frame_show_codecs_usage },