mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
Merged revisions 117899 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r117899 | tilghman | 2008-05-22 13:53:53 -0500 (Thu, 22 May 2008) | 2 lines Also remove preamble from asynchronous events (reported by jsmith on #asterisk-dev) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@117900 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1907,6 +1907,7 @@ static int ast_el_read_char(EditLine *el, char *cp)
|
|||||||
return (num_read);
|
return (num_read);
|
||||||
}
|
}
|
||||||
if (fds[0].revents) {
|
if (fds[0].revents) {
|
||||||
|
char *tmp;
|
||||||
res = read(ast_consock, buf, sizeof(buf) - 1);
|
res = read(ast_consock, buf, sizeof(buf) - 1);
|
||||||
/* if the remote side disappears exit */
|
/* if the remote side disappears exit */
|
||||||
if (res < 1) {
|
if (res < 1) {
|
||||||
@@ -1939,6 +1940,14 @@ static int ast_el_read_char(EditLine *el, char *cp)
|
|||||||
|
|
||||||
buf[res] = '\0';
|
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 */
|
/* Write over the CLI prompt */
|
||||||
if (!ast_opt_exec && !lastpos)
|
if (!ast_opt_exec && !lastpos)
|
||||||
write(STDOUT_FILENO, "\r", 1);
|
write(STDOUT_FILENO, "\r", 1);
|
||||||
|
Reference in New Issue
Block a user