Skip to content
Snippets Groups Projects
Commit 7fa558c7 authored by Russell Bryant's avatar Russell Bryant
Browse files

fix format string (inspired by issue #4945)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6415 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent f64c9153
No related branches found
No related tags found
No related merge requests found
......@@ -1340,7 +1340,7 @@ int ast_cli_command(int fd, char *s)
if (e) {
switch(e->handler(fd, x, argv)) {
case RESULT_SHOWUSAGE:
ast_cli(fd, e->usage);
ast_cli(fd, "%s", e->usage);
break;
}
} else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment