Commit 4f9aefc7 authored by Simon Kelley's avatar Simon Kelley

Don't fight over namespace with re-implementation of strchrnul()

parent 4b528700
...@@ -404,7 +404,7 @@ typedef struct PendingRRSIGValidation ...@@ -404,7 +404,7 @@ typedef struct PendingRRSIGValidation
This is an existing C GNU extension, but it's easier to reimplement it, This is an existing C GNU extension, but it's easier to reimplement it,
rather than tweaking with configure. */ rather than tweaking with configure. */
static char *strchrnul(char *str, char ch) static char *my_strchrnul(char *str, char ch)
{ {
while (*str && *str != ch) while (*str && *str != ch)
str++; str++;
...@@ -420,7 +420,7 @@ static int convert_domain_to_wire(char *name, unsigned char* out) ...@@ -420,7 +420,7 @@ static int convert_domain_to_wire(char *name, unsigned char* out)
do do
{ {
p = strchrnul(name, '.'); p = my_strchrnul(name, '.');
if ((len = p-name)) if ((len = p-name))
{ {
*out++ = len; *out++ = len;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment