Browse Source

LIKE quoting should convert to string for SQL

tags/v0.1.0
Jeremy Latt 10 years ago
parent
commit
abf00e22ec
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      irc/client_lookup_set.go

+ 2
- 2
irc/client_lookup_set.go View File

37
 	return
37
 	return
38
 }
38
 }
39
 
39
 
40
-func QuoteLike(userhost Name) Name {
41
-	return Name(likeQuoter.Replace(userhost.String()))
40
+func QuoteLike(userhost Name) string {
41
+	return likeQuoter.Replace(userhost.String())
42
 }
42
 }
43
 
43
 
44
 type ClientLookupSet struct {
44
 type ClientLookupSet struct {

Loading…
Cancel
Save