mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-09 11:28:25 +00:00
OpenBSD doesn't have rawmemchr, use strchr
(closes issue ASTERISK-19758) Reported by: Barry Miller Tested by: Terry Wilson Patches: 362758-diff uploaded by Barry Miller (license 5434) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@362868 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1313,7 +1313,7 @@ static void *netconsole(void *vconsole)
|
|||||||
/* If we get this far, we have left over characters that have not been processed.
|
/* If we get this far, we have left over characters that have not been processed.
|
||||||
* Advance to the character after the last command read by ast_cli_command_multiple_full.
|
* Advance to the character after the last command read by ast_cli_command_multiple_full.
|
||||||
* We are guaranteed to have at least cmds_read NULLs */
|
* We are guaranteed to have at least cmds_read NULLs */
|
||||||
while (cmds_read-- && (start_read = rawmemchr(start_read, '\0'))) {
|
while (cmds_read-- && (start_read = strchr(start_read, '\0'))) {
|
||||||
start_read++;
|
start_read++;
|
||||||
}
|
}
|
||||||
memmove(inbuf, start_read, end_buf - start_read);
|
memmove(inbuf, start_read, end_buf - start_read);
|
||||||
|
|||||||
Reference in New Issue
Block a user