summaryrefslogtreecommitdiff
path: root/net/nocol/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-08-08 17:48:59 +0000
committerwiz <wiz@pkgsrc.org>2002-08-08 17:48:59 +0000
commite8eff0b5b104eb2a00a2854db08e49b2305b9979 (patch)
tree95f8bfe77388e4841ad682fafbc1acee7e49d158 /net/nocol/patches
parent27cae62d463c334836269ce5afaf772320a5b89e (diff)
downloadpkgsrc-e8eff0b5b104eb2a00a2854db08e49b2305b9979.tar.gz
Update to 4.3.1nb3: add patch sent in from Mishka in private mail,
closing pkg/17833. Fixes Strcasestr, and improves diagnostic message.
Diffstat (limited to 'net/nocol/patches')
-rw-r--r--net/nocol/patches/patch-al39
1 files changed, 39 insertions, 0 deletions
diff --git a/net/nocol/patches/patch-al b/net/nocol/patches/patch-al
new file mode 100644
index 00000000000..1faab963aad
--- /dev/null
+++ b/net/nocol/patches/patch-al
@@ -0,0 +1,39 @@
+$NetBSD: patch-al,v 1.1 2002/08/08 17:49:00 wiz Exp $
+
+--- portmon/portmon.c.orig Thu Apr 6 21:32:26 2000
++++ portmon/portmon.c
+@@ -180,7 +180,7 @@ main(ac, av)
+ else
+ {
+ update_event(&v, harray[i]->status,
+- /* value */ (u_long)(harray[i]->status),
++ /* value */ (u_long)(harray[i]->elapsedsecs),
+ harray[i]->testseverity) ;
+ lseek(fdout, -(off_t)sizeof(v), SEEK_CUR);
+ write(fdout, (char *)&v, sizeof(v));
+@@ -658,16 +658,21 @@ static char *Strcasestr(haystack, needle
+ s1 = haystack; s2 = needle; n = needlelen;
+ do
+ {
+- if (tolower(*s1) != tolower(*s2++) || *s1 == 0) /* */
++ if (*s1 == 0 || tolower(*s1) != tolower(*s2++)) /* */
+ break;
+ ++s1;
+ } while (--n != 0);
+
+- if (n == 0 || *s1 == 0)
+- break; /* found, break out of forever loop */
++ if (n == 0) {
++ --haystack;
++ break; /* found, break out of forever loop */
++ }
++ if (*s1 == 0) {
++ haystack = NULL;
++ break; /* not found, break out of forever loop */
++ }
+
+ } /* end for */
+- haystack--;
+ return ((char *)haystack);
+ } /* Strcasestr() */
+