chiark / gitweb /
Recognise nicks lc too.
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 7 Sep 2000 01:06:47 +0000 (01:06 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Thu, 7 Sep 2000 01:06:47 +0000 (01:06 +0000)
bot.tcl

diff --git a/bot.tcl b/bot.tcl
index 598223b72c562a8fbd2de23d8582fb275e568ccc..b187113fb073642ea836aa3b0184b6fba381ee4c 100755 (executable)
--- a/bot.tcl
+++ b/bot.tcl
@@ -755,7 +755,8 @@ proc nick_securitycheck {strict} {
 
 proc channel_securitycheck {channel n} {
     # You must also call `nick_securitycheck 1'
-    if {[lsearch -exact [irctolower [chandb_get $channel managers]] $n] < 0} {
+    set mgrs [chandb_get $channel managers]
+    if {[lsearch -exact [irctolower $mgrs] [irctolower $n]] < 0} {
        error "you are not a manager of $channel"
     }
 }