diff options
author | dmcmahill <dmcmahill> | 2000-10-20 04:16:20 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2000-10-20 04:16:20 +0000 |
commit | 17b0571b4189815dbd42205c6bb06181908b4b1c (patch) | |
tree | 82d1cdfb5cb3669180184a0051bf3fe6a1e0a291 /net/tkicb | |
parent | dfd87aad56fa970d31c3b16f366da2330c11d519 (diff) | |
download | pkgsrc-17b0571b4189815dbd42205c6bb06181908b4b1c.tar.gz |
fix the bug reported in PR pkg/10782
Many thanks to Keith Reynolds <keithr@keithr.com> (the author of the program)
for a very quick response and providing the bug fix. Had I been thinking
I would have asked him sooner.
Diffstat (limited to 'net/tkicb')
-rw-r--r-- | net/tkicb/files/patch-sum | 3 | ||||
-rw-r--r-- | net/tkicb/patches/patch-ac | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/net/tkicb/files/patch-sum b/net/tkicb/files/patch-sum index e82382bf8ca..73fc35e54ad 100644 --- a/net/tkicb/files/patch-sum +++ b/net/tkicb/files/patch-sum @@ -1,4 +1,5 @@ -$NetBSD: patch-sum,v 1.2 2000/08/31 16:28:31 jwise Exp $ +$NetBSD: patch-sum,v 1.3 2000/10/20 04:16:20 dmcmahill Exp $ MD5 (patch-aa) = cf2bc494eaeaf5f23363c9aa77286900 MD5 (patch-ab) = 7d335d980486839c12a19d1143542e93 +MD5 (patch-ac) = 8ff1e817ca3cdd352d2e95059957b29a diff --git a/net/tkicb/patches/patch-ac b/net/tkicb/patches/patch-ac new file mode 100644 index 00000000000..3e292b78548 --- /dev/null +++ b/net/tkicb/patches/patch-ac @@ -0,0 +1,11 @@ +$NetBSD: patch-ac,v 1.1 2000/10/20 04:16:20 dmcmahill Exp $ + +--- tcl/util.tcl.orig Mon Jun 1 14:53:11 1998 ++++ tcl/util.tcl Thu Oct 19 23:43:11 2000 +@@ -73,5 +73,5 @@ + incr index -1 + +- if {$index == 0} { ++ if {$index == $start} { + set index [expr $start + $maxLength] + break |