[asterisk-commits] tilghman: branch 1.4 r117899 - /branches/1.4/main/asterisk.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu May 22 13:53:54 CDT 2008
Author: tilghman
Date: Thu May 22 13:53:53 2008
New Revision: 117899
URL: http://svn.digium.com/view/asterisk?view=rev&rev=117899
Log:
Also remove preamble from asynchronous events (reported by jsmith on #asterisk-dev)
Modified:
branches/1.4/main/asterisk.c
Modified: branches/1.4/main/asterisk.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/main/asterisk.c?view=diff&rev=117899&r1=117898&r2=117899
==============================================================================
--- branches/1.4/main/asterisk.c (original)
+++ branches/1.4/main/asterisk.c Thu May 22 13:53:53 2008
@@ -1765,6 +1765,7 @@
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) {
@@ -1797,6 +1798,14 @@
}
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)
More information about the asterisk-commits
mailing list