changeset 316:682adbf6f09f

urllog: 10L Bugfix.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 27 Feb 2015 19:35:57 +0200
parents 7a987b22a817
children 994c398cb3fc
files utillib.tcl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/utillib.tcl	Fri Feb 27 17:39:54 2015 +0200
+++ b/utillib.tcl	Fri Feb 27 19:35:57 2015 +0200
@@ -52,7 +52,7 @@
 
 proc utl_match_delim_list {ulist ustr} {
   foreach ukey [split $ulist ";"] {
-    if {[string match $ukey $ustr} {
+    if {[string match $ukey $ustr]} {
       return 1
     }
   }