diff options
Diffstat (limited to 'net-misc/bti/files/bti-031-nonGNU.patch')
-rw-r--r-- | net-misc/bti/files/bti-031-nonGNU.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/net-misc/bti/files/bti-031-nonGNU.patch b/net-misc/bti/files/bti-031-nonGNU.patch deleted file mode 100644 index 14b10c1fb83..00000000000 --- a/net-misc/bti/files/bti-031-nonGNU.patch +++ /dev/null @@ -1,32 +0,0 @@ -Avoid using strchrnul, it's a GNU addition. The code in question, -actually doesn't really benefit from strchrnul's behaviour. - ---- config.c -+++ config.c -@@ -351,20 +351,21 @@ - * marker if it occurs at the beginning of the line, or after - * whitespace - */ -- hashmarker = strchrnul(line, '#'); -+ hashmarker = strchr(line, '#'); - if (line == hashmarker) - line[0] = '\0'; - else { -- while (hashmarker[0] != '\0') { -+ while (hashmarker != NULL) { - --hashmarker; -- if (isblank(hashmarker[0])) -+ if (isblank(hashmarker[0])) { - hashmarker[0] = '\0'; -- else { -+ break; -+ } else { - /* - * false positive; '#' occured - * within a string - */ -- hashmarker = strchrnul(hashmarker+2, '#'); -+ hashmarker = strchr(hashmarker+2, '#'); - } - } - } |