Skip to content

Commit

Permalink
Non-verbose output should always go to the remote console, regardless…
Browse files Browse the repository at this point in the history
… of the previous level.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@355749 65c4cc65-6c06-0410-ace0-fbb531ad65f3
  • Loading branch information
tilghman committed Feb 17, 2012
1 parent 7c373d8 commit a93fbe2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main/asterisk.c
Original file line number Diff line number Diff line change
Expand Up @@ -2334,6 +2334,9 @@ static int ast_el_read_char(EditLine *editline, char *cp)
if (state->prev_line_full && VERBOSE_HASMAGIC(curline)) {
level = VERBOSE_MAGIC2LEVEL(curline);
curline++;
} else if (state->prev_line_full && !VERBOSE_HASMAGIC(curline)) {
/* Non-verbose output */
level = 0;
} else {
level = state->prev_line_verbosity;
}
Expand Down

0 comments on commit a93fbe2

Please sign in to comment.