From 301289d8de900a08f5ea5798f71d8467bb8e2ffa Mon Sep 17 00:00:00 2001 From: Terry Wilson Date: Fri, 20 Apr 2012 16:12:34 +0000 Subject: [PATCH] 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) ........ Merged revisions 362868 from http://svn.asterisk.org/svn/asterisk/branches/1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@362869 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/asterisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/asterisk.c b/main/asterisk.c index e6c3dea16b..a17945f5e9 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -1320,7 +1320,7 @@ static void *netconsole(void *vconsole) /* 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. * 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++; } memmove(inbuf, start_read, end_buf - start_read);