summaryrefslogtreecommitdiff
path: root/net/tkicb
diff options
context:
space:
mode:
authorjwise <jwise>2000-08-31 16:28:31 +0000
committerjwise <jwise>2000-08-31 16:28:31 +0000
commit8b97fac165a9c5f9a15e61ef4d26ca80738636d3 (patch)
tree7d1023932d2f7f7b58b8311f6aa306a091aa9b92 /net/tkicb
parent8d20f1373bcbc611d0514e25cb04e52b7d7bdfee (diff)
downloadpkgsrc-8b97fac165a9c5f9a15e61ef4d26ca80738636d3.tar.gz
Use string compare -nocase $a $b instead of regexp -nocase "^$a$" $b.
Diffstat (limited to 'net/tkicb')
-rw-r--r--net/tkicb/files/patch-sum3
-rw-r--r--net/tkicb/patches/patch-ab11
2 files changed, 13 insertions, 1 deletions
diff --git a/net/tkicb/files/patch-sum b/net/tkicb/files/patch-sum
index 3114504a691..e82382bf8ca 100644
--- a/net/tkicb/files/patch-sum
+++ b/net/tkicb/files/patch-sum
@@ -1,3 +1,4 @@
-$NetBSD: patch-sum,v 1.1 2000/06/29 14:26:39 jwise Exp $
+$NetBSD: patch-sum,v 1.2 2000/08/31 16:28:31 jwise Exp $
MD5 (patch-aa) = cf2bc494eaeaf5f23363c9aa77286900
+MD5 (patch-ab) = 7d335d980486839c12a19d1143542e93
diff --git a/net/tkicb/patches/patch-ab b/net/tkicb/patches/patch-ab
new file mode 100644
index 00000000000..5f44aab28f4
--- /dev/null
+++ b/net/tkicb/patches/patch-ab
@@ -0,0 +1,11 @@
+--- tcl/tabhist.tcl.orig Thu Aug 31 12:12:32 2000
++++ tcl/tabhist.tcl Thu Aug 31 12:13:10 2000
+@@ -72,7 +72,7 @@
+ regsub -all . $searchNick {\\&} matchStr
+
+ foreach nick $TabHist_list {
+- if {[regexp -nocase "^$matchStr$" $nick]} {
++ if {[string compare -nocase $matchStr $nick]} {
+ DEBUG:Output tabhist 6 "TabHist:Search: returning $index"
+ return $index
+ }