diff options
Diffstat (limited to 'devel/generate/patches/patch-af')
-rw-r--r-- | devel/generate/patches/patch-af | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/devel/generate/patches/patch-af b/devel/generate/patches/patch-af deleted file mode 100644 index 39de420b181..00000000000 --- a/devel/generate/patches/patch-af +++ /dev/null @@ -1,31 +0,0 @@ -$NetBSD: patch-af,v 1.1 2004/12/18 19:05:54 minskim Exp $ - ---- xstrtok.c.orig 2004-11-09 14:16:42.000000000 -0600 -+++ xstrtok.c -@@ -55,7 +55,7 @@ xstrtok(XSTRTOK *xinfo) - - /* special case for space delimiter */ - if (*xinfo->delim == ' ') -- while (isspace(*scan)) -+ while (isspace((unsigned char)*scan)) - scan++; - - /* are we finished with the line? */ -@@ -85,7 +85,7 @@ xstrtok(XSTRTOK *xinfo) - for (dscan = xinfo->delim; *dscan != '\0';) /* increment is in body */ - { - /* have we found a delimiter? */ -- if ((*xinfo->delim == ' ' && isspace(*scan)) || *scan == *dscan++) -+ if ((*xinfo->delim == ' ' && isspace((unsigned char)*scan)) || *scan == *dscan++) - { - xinfo->scanpoint = scan + 1; /* point to next character */ - *scan = '\0'; /* terminate the token */ -@@ -112,7 +112,7 @@ xstrtok(XSTRTOK *xinfo) - for (dscan = xinfo->delim; *dscan != '\0';) /* increment is in body */ - { - /* have we found a delimiter? */ -- if ((*xinfo->delim == ' ' && isspace(*scan)) || *scan == *dscan++) -+ if ((*xinfo->delim == ' ' && isspace((unsigned char)*scan)) || *scan == *dscan++) - { - xinfo->scanpoint = scan + 1; /* point to next character */ - *scan = '\0'; /* terminate the token */ |