aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/asterisk.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index d6e2da013..4355cdf44 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -1907,6 +1907,7 @@ static int ast_el_read_char(EditLine *el, char *cp)
return (num_read);
}
if (fds[0].revents) {
+ char *tmp;
res = read(ast_consock, buf, sizeof(buf) - 1);
/* if the remote side disappears exit */
if (res < 1) {
@@ -1939,6 +1940,14 @@ static int ast_el_read_char(EditLine *el, char *cp)
buf[res] = '\0';
+ /* Strip preamble from asynchronous events, too */
+ for (tmp = buf; *tmp; tmp++) {
+ if (*tmp == 127) {
+ memmove(tmp, tmp + 1, strlen(tmp));
+ tmp--;
+ }
+ }
+
/* Write over the CLI prompt */
if (!ast_opt_exec && !lastpos)
write(STDOUT_FILENO, "\r", 1);