From: snuffy Date: Wed, 19 Oct 2016 22:53:24 +0000 (+1100) Subject: Fix issue with CLI not returning to prompt after running "features show" X-Git-Tag: 13.13.0-rc1~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2036c827cb22e2fbf509d4318b6f177d516c033;p=thirdparty%2Fasterisk.git Fix issue with CLI not returning to prompt after running "features show" ASTERISK-26444 #close Change-Id: I91d645b7e6e5dba35f8c410df2be77a8c0e3acb8 --- diff --git a/main/features_config.c b/main/features_config.c index 9126a86c7d..4a86f4baaa 100644 --- a/main/features_config.c +++ b/main/features_config.c @@ -1949,8 +1949,6 @@ static char *handle_feature_show(struct ast_cli_entry *e, int cmd, struct ast_cl ao2_callback(cfg->featuregroups, 0, print_featuregroups, a); } - ast_cli(a->fd, "\n"); - return CLI_SUCCESS; }